summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-05-24 16:27:50 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-05-24 16:27:50 +0000
commit0a5e13189a1738c9d6f5e4b85c62ca72a3d59055 (patch)
tree298e54c2213d1426b30aec8ed36bb4202a3cccc7 /tools
parent74de4063c6a153dbc5e445d28861b7f7d9ca1e34 (diff)
more build script cleanups
git-svn-id: svn://localhost/ardour2/branches/3.0@12425 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'tools')
-rwxr-xr-xtools/linux_packaging/build14
1 files changed, 2 insertions, 12 deletions
diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build
index 5605af2f0a..a6d98ee09d 100755
--- a/tools/linux_packaging/build
+++ b/tools/linux_packaging/build
@@ -289,31 +289,21 @@ fi
# Copy stuff that may be dynamically loaded
#
-cp -R $GTKSTACK_ROOT/etc/fonts $Etc
cp -R $GTKSTACK_ROOT/etc/* $Etc
echo "Copying all Pango modules ..."
cp -R $GTKSTACK_ROOT/lib/pango/1.6.0/modules/*.so $Modules
echo "Copying all GDK Pixbuf loaders ..."
cp -R $GTKSTACK_ROOT/lib/gdk-pixbuf-2.0/2.10.0/loaders/*.so $Loaders
# charset alias file
-cp -R $GTKSTACK_ROOT/lib/charset.alias $Etc
pango-querymodules | sed "s?$GTKSTACK_ROOT/lib/pango/1.6.0/?@ROOTDIR@/?" > $Etc/pango.modules.in
gdk-pixbuf-query-loaders | sed "s?$GTKSTACK_ROOT/lib/gdk-pixbuf-2.0/2.10.0/?@ROOTDIR@/?" > $Etc/gdk-pixbuf.loaders.in
-# We sort of rely on clearlooks, so include a version
+# We rely on clearlooks, so include a version from our own build tree
# this one is special - we will set GTK_PATH to $Libraries/clearlooks
-clearlooks_so=${GTKLIB}/engines/libclearlooks.so
-if [ ! -e $clearlooks.so ]; then
- echo "!!! ERROR !!! - not able to locate libclearlooks.so"
- echo ""
- echo "Packager with exit"
- exit 1
-fi
-
echo "Copying clearlooks ..."
-cp $clearlooks_so $Libraries
+cp $BUILD_ROOT/lib/clearlooks-newer/libclearlooks.so $Libraries
mkdir -p $Libraries/clearlooks/engines
(cd $Libraries/clearlooks/engines && ln -s ../../libclearlooks* libclearlooks.so )