Fix so that the configure.in works with autoconf 2.5x; make sure
authorH. Peter Anvin <hpa@zytor.com>
Sun, 19 May 2002 01:57:54 +0000 (01:57 +0000)
committerH. Peter Anvin <hpa@zytor.com>
Sun, 19 May 2002 01:57:54 +0000 (01:57 +0000)
"make cleaner" cleans up all that it needs to clean up

CHANGES
Makefile.in
configure.in

diff --git a/CHANGES b/CHANGES
index c895d7b..910483f 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,9 @@
 * Complete rewrite of the PostScript/PDF documentation generator.
 * The MS Visual C++ Makefile was updated and corrected.
 * Recognize .rodata as a standard section name in ELF.
+* Fix some obsolete Perl4-isms in Perl scripts.
+* Fix configure.in to work with autoconf 2.5x.
+* Fix a couple of "make cleaner" misses.
 
 
 0.98.31
index a83ab22..ff8b4b6 100644 (file)
@@ -136,7 +136,7 @@ distclean: clean
 
 cleaner: clean
        rm -f insnsa.c insnsd.c insnsi.h insnsn.c macros.c *.man
-       rm -f nasm.spec
+       rm -f nasm.spec version.h version.mac
        cd doc && $(MAKE) clean
 
 spotless: distclean cleaner
@@ -162,7 +162,7 @@ install_everything: everything install install_doc install_rdf
 
 dist: spotless perlreq
        autoconf
-       rm -rf ./autom4te.cache
+       rm -rf ./autom4te*.cache
 
 tar: dist
        tar cvjf ../nasm-`cat version`-`date +%Y%m%d`.tar.bz2 ../`./nasm-dir`
index a8ef814..4903b4c 100644 (file)
@@ -111,5 +111,5 @@ if test $ac_cv_prog_make_vpathok = no; then
   if test ! -f macros.c; then cp -p ${srcdir}/macros.c .; fi
 fi
 
-AC_OUTPUT(Makefile rdoff/Makefile doc/Makefile)
 AC_OUTPUT_COMMANDS([mkdir -p output])
+AC_OUTPUT(Makefile rdoff/Makefile doc/Makefile)