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

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

Upgraded this extension to use the exthome variable correctly and a few other minor fixes

  • Property svn:executable set to *
File size: 497 bytes
Line 
1#!/bin/bash
2
3source ../cascade-make/lib/cascade-lib.bash GEXTGNOME .. $*
4
5for d in INTLTOOL GETTEXT PKG-CONFIG LIBXML GLIB LIBGSF; do
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
14done
15
16if [ $install = "1" ] ; then
17 touch "$GEXTGNOME_INSTALLED/lib/pkgconfig/.fixed-prefix.awk"
18fi
19
20if [ $makedist = "1" ] ; then
21 rm -f "$GEXTGNOME_INSTALLED/lib/pkgconfig/.fixed-prefix.awk"
22fi
Note: See TracBrowser for help on using the repository browser.