summaryrefslogtreecommitdiff
path: root/tools/osx_packaging
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-07-18 11:50:34 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-07-18 11:50:38 -0400
commit3099d99e0b9c12c500507cc2e3e14015c7364823 (patch)
treeb1e32eb2d8f1f190ccd70a82c9fecd2b30fa69d5 /tools/osx_packaging
parent56c4b3c9b05ec22a89ba594061ba4ec4cb7c5da1 (diff)
correctly package color theme files for both linux and OS X
Diffstat (limited to 'tools/osx_packaging')
-rwxr-xr-xtools/osx_packaging/osx_build7
1 files changed, 1 insertions, 6 deletions
diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build
index ef744ebb36..a63f92c4bd 100755
--- a/tools/osx_packaging/osx_build
+++ b/tools/osx_packaging/osx_build
@@ -496,12 +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:]'`
-for colorfile in `echo ../../gtk2_ardour/themes/*-${lower_case_appname}.colors`
-do
- cf=`basename $colorfile`
- cf=`echo $cf | sed -e "s/-${lower_case_appname}//"`
- cp $colorfile $Themes/$cf
-done
+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