Update of /cvsroot/foo/foo
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17804
Modified Files:
bootstrap
Log Message:
added config.guess to the automake fix, which is related to automake-1.6 rather than mac os x. sorry
Index: bootstrap
===================================================================
RCS file: /cvsroot/foo/foo/bootstrap,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** bootstrap 9 Aug 2004 17:32:05 -0000 1.2
--- bootstrap 9 Aug 2004 17:54:54 -0000 1.3
***************
*** 48,52 ****
# bootstrapping subdirs
for dir in ${SUBDIRS}; do
! (cd $dir && echo "bootstrapping $dir" && sh ./bootstrap) || exit 1
done
--- 48,53 ----
# bootstrapping subdirs
for dir in ${SUBDIRS}; do
! (cd $dir && echo "bootstrapping $dir" && sh ./bootstrap ${amvers}) \
! || exit 1
done
***************
*** 63,67 ****
automake${amvers} --add-missing --copy
! # fix nasty automake bug on mac os x
if test ! -e ./autotools/config.sub; then
if test -e /usr/local/share/automake${amvers}/config.sub; then
--- 64,78 ----
automake${amvers} --add-missing --copy
! # fix nasty automake-1.6 bug
! if test ! -e ./autotools/config.guess; then
! if test -e /usr/local/share/automake${amvers}/config.guess; then
! cp /usr/local/share/automake${amvers}/config.guess ./autotools/
! elif test -e /usr/share/automake${amvers}/config.guess; then
! cp /usr/share/automake${amvers}/config.guess ./autotools/
! else
! echo "./autotools/config.guess is missing, apparently due to an automake bug."
! fi
! fi
!
if test ! -e ./autotools/config.sub; then
if test -e /usr/local/share/automake${amvers}/config.sub; then
|