mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
0555a68054
This makes acinclude.m4 unecessary.
22 lines
475 B
Bash
Executable File
22 lines
475 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo aclocal...
|
|
aclocal
|
|
|
|
echo autoheader...
|
|
autoheader
|
|
# The timestamp of stamp-h.in indicates when config.h.in was last
|
|
# generated or found to be already correct. Create stamp-h.in so
|
|
# that it gets included in elinks-*.tar.gz and Makefile won't try
|
|
# to run a possibly incompatible version of autoheader (bug 936).
|
|
echo timestamp > stamp-h.in
|
|
|
|
echo autoconf...
|
|
autoconf
|
|
|
|
echo config.cache, autom4te.cache...
|
|
rm -f config.cache
|
|
rm -rf autom4te.cache
|
|
|
|
echo done
|