From 350d4aab5e1ac151efd9e40cc4efbeea0ca45b3e Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Sun, 22 Aug 2004 20:21:34 +0000 Subject: [PATCH] new target to get the config.sub and config.guess files - needed since Libtool was removed git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@6106 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/Makefile.in | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/SWIG/Makefile.in b/SWIG/Makefile.in index 23f4f7d71..44dc16dc9 100644 --- a/SWIG/Makefile.in +++ b/SWIG/Makefile.in @@ -403,4 +403,13 @@ srcrpm: rm -fr $(srpm) rpmbuild -ts $(srpm).tar.gz +# Update the autoconf files for detecting host/targets. Automake will do this in +# version 1.10 for our case of not having a top level Makefile.am. Until then we +# can fetch them manually and will have to commit them to CVS. +configfiles: + wget ftp://ftp.gnu.org/pub/gnu/config/config.guess -O Tools/config/config.guess + chmod a+x Tools/config/config.guess + wget ftp://ftp.gnu.org/pub/gnu/config/config.sub -O Tools/config/config.sub + chmod a+x Tools/config/config.sub + # Makefile ends here