summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorPeter Johnson <peter@tortall.net>2001-12-26 20:52:44 +0000
committerPeter Johnson <peter@tortall.net>2001-12-26 20:52:44 +0000
commitc40b3b6aaa615c94e5289076fb976c27ce54d713 (patch)
tree2ad5d58ce88317a71da59713b40f9a951757cca7 /autogen.sh
parent1301c6786eb0416e8a08580d97fe5beee7feb19c (diff)
downloadyasm-c40b3b6aaa615c94e5289076fb976c27ce54d713.tar.gz
Remove config/* files, and automatically create the config directory in
autogen.sh if it's not present. This will have the needed config/ files generated by automake -a when they're needed. svn path=/trunk/yasm/; revision=403
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
index b519a9e9..82e226d3 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -68,6 +68,10 @@ fi
echo "Generating configuration files for $package, please wait...."
+if test ! -d "config"; then
+ mkdir config
+fi
+
rm -f stamp-h.in
echo " aclocal $ACLOCAL_FLAGS"
aclocal $ACLOCAL_FLAGS || exit 1