source: gs2-extensions/gnome-lib/trunk/src/packages/CASCADE-MAKE.sh@ 23150

Last change on this file since 23150 was 23150, checked in by sjm84, 14 years ago

Adding libz and libbz2 to the gnome-lib extension

  • Property svn:executable set to *
File size: 615 bytes
RevLine 
[22811]1#!/bin/bash
2
[23096]3source ../cascade-make/lib/cascade-lib.bash GEXTGNOME .. $*
[23076]4
[23150]5for d in LIBZ LIBBZ2 INTLTOOL GETTEXT PKG-CONFIG LIBXML GLIB LIBGSF; do
[22811]6 echo " Running CASCADE-MAKE/$d.sh"
7
8 ./CASCADE-MAKE/$d.sh $*
9
10 if [ $? != 0 ] ; then
11 echo "Error encountered running CASCADE-MAKE/$d.sh"
12 exit 1
13 fi
[23076]14done
15
16if [ $install = "1" ] ; then
17 touch "$GEXTGNOME_INSTALLED/lib/pkgconfig/.fixed-prefix.awk"
18fi
19
[23096]20if [ $makedist = "1" ] ; then
21 rm -f "$GEXTGNOME_INSTALLED/lib/pkgconfig/.fixed-prefix.awk"
[23126]22 lalist=`find $GEXTGNOME_INSTALLED/lib -name "*.la"`
23 if [ -n "$lalist" ] ; then
24 rm -f $lalist
25 fi
[23096]26fi
Note: See TracBrowser for help on using the repository browser.