summaryrefslogtreecommitdiff
path: root/tools/osx_packaging
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-05-31 16:27:50 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-05-31 16:27:50 -0400
commit1ba015d3aa82790d87f94a1155820e8a3b0e94f1 (patch)
tree0649ab5b8048b5616791117be8a399eb92d7d751 /tools/osx_packaging
parent82273a75510e01c6bc1cc08f090583a54ca45fd5 (diff)
fix install of color theme files for linux and OS X
Diffstat (limited to 'tools/osx_packaging')
-rwxr-xr-xtools/osx_packaging/osx_build6
1 files changed, 1 insertions, 5 deletions
diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build
index 77ff211f7e..2010ca8499 100755
--- a/tools/osx_packaging/osx_build
+++ b/tools/osx_packaging/osx_build
@@ -495,11 +495,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 colors in `echo ../../gtk2_ardour/themes/*-${lower_case_appname}.colors`
-do
- cp `basename $colors` $Themes
-done
-
+cp `echo ../../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