From 0fcdadeb5509f7bbf79098ee8a2088005540704a Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Sun, 19 May 2002 01:57:54 +0000 Subject: [PATCH] Fix so that the configure.in works with autoconf 2.5x; make sure "make cleaner" cleans up all that it needs to clean up --- CHANGES | 3 +++ Makefile.in | 4 ++-- configure.in | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index c895d7b8..910483f7 100644 --- 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 diff --git a/Makefile.in b/Makefile.in index a83ab22c..ff8b4b65 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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` diff --git a/configure.in b/configure.in index a8ef814e..4903b4cf 100644 --- a/configure.in +++ b/configure.in @@ -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)