From 27978e5cd36d2063405fc887ecdbcc421b30b767 Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Thu, 22 Mar 2012 14:38:40 -0400 Subject: [PATCH] Now that vlc plugins are in Frameworks/vlc/plugins, we can rename plugins to PlugIns to retain case-sensitive compatibility on osx --- admin/mac/macdeploy.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/admin/mac/macdeploy.py b/admin/mac/macdeploy.py index 31b4fb798..1fbdf05d6 100755 --- a/admin/mac/macdeploy.py +++ b/admin/mac/macdeploy.py @@ -1,6 +1,7 @@ #!/usr/bin/python -# This file is part of Clementine. +# This file is part of Tomahawk. +# It was inspired in large part by the macdeploy script in Clementine. # # Clementine is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -249,7 +250,7 @@ frameworks_dir = os.path.join(bundle_dir, 'Contents', 'Frameworks') commands.append(['mkdir', '-p', frameworks_dir]) resources_dir = os.path.join(bundle_dir, 'Contents', 'Resources') commands.append(['mkdir', '-p', resources_dir]) -plugins_dir = os.path.join(bundle_dir, 'Contents', 'plugins') +plugins_dir = os.path.join(bundle_dir, 'Contents', 'PlugIns') binary = os.path.join(bundle_dir, 'Contents', 'MacOS', bundle_name) fixed_libraries = []