Revision: 10404 http://pure-data.svn.sourceforge.net/pure-data/?rev=10404&view=rev Author: mukau Date: 2008-11-30 16:20:57 +0000 (Sun, 30 Nov 2008)
Log Message: ----------- + added libtoolize call to autogen.sh
Modified Paths: -------------- trunk/externals/moocow/gfsm/autogen.sh
Property Changed: ---------------- trunk/externals/moocow/gfsm/ trunk/externals/moocow/gfsm/gfsm/ trunk/externals/moocow/gfsm/gfsm/config/
Property changes on: trunk/externals/moocow/gfsm ___________________________________________________________________ Added: svn:ignore + gfsm.pc magic magic.local *~ .*~ *.o *.lo *.la *.a *.so *.gz *.bz2 *.deb *.changes *.dsc *.rpm rpm .libs .deps aclocal.m4 autom4te.cache Makefile Makefile.in *.tmp configure config.log config.status config.cache libtool include
Modified: trunk/externals/moocow/gfsm/autogen.sh =================================================================== --- trunk/externals/moocow/gfsm/autogen.sh 2008-11-29 23:22:39 UTC (rev 10403) +++ trunk/externals/moocow/gfsm/autogen.sh 2008-11-30 16:20:57 UTC (rev 10404) @@ -8,13 +8,15 @@
MY_ALDIRS="." MY_AHDIRS="." +MY_LTDIRS="." MY_AMDIRS="." MY_ACDIRS="."
-MY_AGDIRS="./gfsm" +MY_SUBDIRS="./gfsm"
test -z "$ACLOCAL" && ACLOCAL=aclocal test -z "$AUTOHEADER" && AUTOHEADER=autoheader +test -z "$LIBTOOLIZE" && LIBTOOLIZE="libtoolize --automake" test -z "$AUTOMAKE" && AUTOMAKE=automake test -z "$AUTOCONF" && AUTOCONF=autoconf
@@ -32,6 +34,13 @@ done fi
+if test -n "$MY_LTDIRS"; then + for d in $MY_LTDIRS ; do + echo "(cd $d ; $LIBTOOLIZE)" + (cd $d ; $LIBTOOLIZE) + done +fi + if test -n "$MY_AMDIRS"; then for d in $MY_AMDIRS ; do echo "(cd $d ; $AUTOMAKE -a)" @@ -46,10 +55,10 @@ done fi
-if test -n "$MY_AGDIRS"; then - for d in $MY_AGDIRS ; do - echo "(cd $d ; ./autogen.sh)" - (cd $d ; ./autogen.sh) +if test -n "$MY_SUBDIRS"; then + for d in $MY_SUBDIRS ; do + echo "(cd $d ; sh ./autogen.sh)" + (cd $d ; sh ./autogen.sh) done fi
Property changes on: trunk/externals/moocow/gfsm/gfsm ___________________________________________________________________ Added: svn:ignore + gfsm.pc magic magic.local *~ .*~ *.o *.lo *.la *.a *.so *.gz *.bz2 *.deb *.changes *.dsc *.rpm rpm .libs .deps aclocal.m4 autom4te.cache Makefile Makefile.in *.tmp configure config.log config.status config.cache libtool include
Property changes on: trunk/externals/moocow/gfsm/gfsm/config ___________________________________________________________________ Added: svn:ignore + *~ .*~ *.o *.lo *.la .libs *.a *.so aclocal.m4 Makefile Makefile.in README.txt configure .deps
depcomp missing config.guess config.sub ltmain.sh install-sh ylwrap
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.