fix install of color theme files for linux and OS X

This commit is contained in:
Paul Davis 2016-05-31 16:27:50 -04:00
parent 82273a7551
commit 1ba015d3aa
2 changed files with 2 additions and 9 deletions

View File

@ -599,10 +599,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 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
#
# put sooper sekrit ingredients here and they will be copied

View File

@ -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