Running autoreconf when AC_CONFIG_MACRO_DIR does not exist ends up in a
failure. Unfortunately, git does not track empty directories. That's why
we have bootstrap, which creates it before running autoreconf.
Add an empty, dummy file in there and track it, so we can get rid of our
bootstrap script.
Update the README file accordingly.
We're left with a stray, generated autom4te.cache file, but that's a
minor annoyance.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Note that, provided you have the required dependencies, all frontends are
properly built if you link dynamically. The following just works as expected:
./configure && make
+
+Note: if using the git tree, or changing the autostuff sources, you'll first
+have to run:
+ autoreconf -fi
+++ /dev/null
-#!/bin/sh
-set -e
-
-printf "Creating macrodir...\n"
-macrodir="$( sed -e '/^AC_CONFIG_MACRO_DIR(\[\(.*\)\])/!d;' \
- -e 's//\1/;' \
- configure.ac \
- )"
-mkdir -p "${macrodir}"
-
-printf "Running autoreconf...\n"
-autoreconf -f -i -Wall
-
-# Cleanup the useless stuff... :-(
-rm -rf autom4te.cache
-
-printf "Done. You may now run:\n ./configure\n"