mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
cae5d06184
Make further autoconf rule improvements and update the required version of autoconf to 2.69. That version is now 5+ years old and although there might be older versions which have the prerequisite macros they are known to have lots of bugs, and we can't really test them. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
9 lines
230 B
Bash
Executable File
9 lines
230 B
Bash
Executable File
#!/bin/sh -xe
|
|
#
|
|
# Simple script to run the appropriate autotools from a repository.
|
|
#
|
|
autoreconf
|
|
rm -rf autom4te.cache config.log config.status
|
|
rm -f Makefile rdoff/Makefile doc/Makefile
|
|
rm -f config.h.in config.h config/config.h
|