summaryrefslogtreecommitdiff
path: root/tools/osx_packaging
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-06-01 17:04:10 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-06-01 17:04:18 -0400
commit70398212687289df34051692e5353f7920e2d740 (patch)
treefba1f45dd014a9d00150f031b667108d7e6272f8 /tools/osx_packaging
parent0531d0dd0c544b183320efc32cf2780bc46a17d2 (diff)
fix OS X bundling to include theme files
Diffstat (limited to 'tools/osx_packaging')
-rwxr-xr-xtools/osx_packaging/osx_build3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build
index 2010ca8499..2ecae4aa6c 100755
--- a/tools/osx_packaging/osx_build
+++ b/tools/osx_packaging/osx_build
@@ -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