fix OS X bundling to include theme files
authorPaul Davis <paul@linuxaudiosystems.com>
Wed, 1 Jun 2016 21:04:10 +0000 (17:04 -0400)
committerPaul Davis <paul@linuxaudiosystems.com>
Wed, 1 Jun 2016 21:04:18 +0000 (17:04 -0400)
tools/osx_packaging/osx_build

index 2010ca8499544436f5f030998684c880f171d2cc..2ecae4aa6c55e6bdba9b717f8c91a605c72f5379 100755 (executable)
@@ -181,6 +181,7 @@ mkdir -p $Etc
 mkdir -p $MackieControl
 mkdir -p $PatchFiles
 mkdir -p $LuaScripts
+mkdir -p $Themes
 
 # maybe set variables
 env=""
@@ -495,7 +496,7 @@ cp ../../gtk2_ardour/resources/${PRODUCT_PKG_DIR}-* ${Resources}/resources/
 
 # Themes: only install those named for this app
 lower_case_appname=`echo $APPNAME | tr '[:upper:]' '[:lower:]'`
-cp `echo ../../gtk2_ardour/themes/*-${lower_case_appname}.colors` $Themes
+cp ../../gtk2_ardour/themes/*-${lower_case_appname}.colors $Themes
 
 # go through and recursively remove any .svn dirs in the bundle
 for svndir in `find $APPDIR -name .svn -type dir`; do