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

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

The makedist process now also removes .la files from the install lib directory

  • Property svn:executable set to *
File size: 603 bytes
RevLine 
[22811]1#!/bin/bash
2
[23096]3source ../cascade-make/lib/cascade-lib.bash GEXTGNOME .. $*
[23076]4
[22825]5for d in 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.