fix color file install paths

We are supposed to remove the application name after copying
This commit is contained in:
Paul Davis 2016-06-29 15:16:21 -04:00
parent ff5f05bd99
commit 139094b456
1 changed files with 6 additions and 1 deletions

View File

@ -599,7 +599,12 @@ cp ../../gtk2_ardour/resources/${APPNAME}-* ${Shared}/resources/
# Themes: only install those named for this app
lower_case_appname=`echo $APPNAME | tr '[:upper:]' '[:lower:]'`
cp `echo ../../gtk2_ardour/themes/*-${lower_case_appname}.colors` $Themes
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
#
# put sooper sekrit ingredients here and they will be copied