summaryrefslogtreecommitdiff
path: root/tools
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
parent56c4b3c9b05ec22a89ba594061ba4ec4cb7c5da1 (diff)
correctly package color theme files for both linux and OS X
Diffstat (limited to 'tools')
-rwxr-xr-xtools/linux_packaging/build7
-rwxr-xr-xtools/osx_packaging/osx_build7
2 files changed, 2 insertions, 12 deletions
diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build
index 6ed2e13941..34a16f9513 100755
--- a/tools/linux_packaging/build
+++ b/tools/linux_packaging/build
@@ -607,12 +607,7 @@ cp ../../gtk2_ardour/resources/${APPNAME}-* ${Shared}/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
#
# put sooper sekrit ingredients here and they will be copied
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