summaryrefslogtreecommitdiff
path: root/tools/linux_packaging
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-05-31 15:25:18 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-05-31 15:30:46 -0400
commit23769a38f133e1b6b47dbc0196642287a4cdf976 (patch)
tree384a10762e7f2179ef9a5fb670657d93fe2ab7e1 /tools/linux_packaging
parent257f1bf7df8378395684d9ce28643398ee8f7d5f (diff)
do not strip appname from color theme files
Diffstat (limited to 'tools/linux_packaging')
-rwxr-xr-xtools/linux_packaging/build6
1 files changed, 2 insertions, 4 deletions
diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build
index c84cadf4d3..7be50c4e87 100755
--- a/tools/linux_packaging/build
+++ b/tools/linux_packaging/build
@@ -597,13 +597,11 @@ cp -r ../../gtk2_ardour/icons/icons/cursor_* ${Shared}/icons/
cp ../../gtk2_ardour/ArdourMono.ttf $Shared
cp ../../gtk2_ardour/resources/${APPNAME}-* ${Shared}/resources/
-# Themes. Grab only the ones for this program
+# 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
- install_name=`echo $colors | sed "s/-$lower_case_appname//"`
- install_name=`basename $install_name`
- cp $colors $Themes/$install_name
+ cp `basename $colors` $Themes
done
#