Update of /cvsroot/foo/foo
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13127
Modified Files:
bootstrap
Log Message:
try to fix automake bug on mac os x
Index: bootstrap
===================================================================
RCS file: /cvsroot/foo/foo/bootstrap,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** bootstrap 7 Aug 2004 23:56:11 -0000 1.1
--- bootstrap 9 Aug 2004 17:32:05 -0000 1.2
***************
*** 62,63 ****
--- 62,74 ----
autoconf
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
+ cp /usr/local/share/automake${amvers}/config.sub ./autotools/
+ elif test -e /usr/share/automake${amvers}/config.sub; then
+ cp /usr/share/automake${amvers}/config.sub ./autotools/
+ else
+ echo "./autotools/config.sub is missing, apparently due to an automake bug."
+ fi
+ fi
|