From: Paul Davis Date: Mon, 18 Jul 2016 15:50:34 +0000 (-0400) Subject: correctly package color theme files for both linux and OS X X-Git-Tag: 5.0-pre1~47 X-Git-Url: https://main.carlh.net/gitweb/?p=ardour.git;a=commitdiff_plain;h=3099d99e0b9c12c500507cc2e3e14015c7364823 correctly package color theme files for both linux and OS X --- 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