summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorJan Engelhardt2013-12-10 17:02:05 +0100
committerJan Engelhardt2013-12-10 17:02:59 +0100
commitf5396cf3c7d90ddb54c96be0a2c7ed6d41d21d10 (patch)
treee66062036a59e37b62624a54d656df9ea94c3993 /autogen.sh
parentd44fdfaeee2f4be129c0e2d87ba460fc308e4274 (diff)
downloadchocolate-doom-f5396cf3c7d90ddb54c96be0a2c7ed6d41d21d10.tar.gz
chocolate-doom-f5396cf3c7d90ddb54c96be0a2c7ed6d41d21d10.tar.bz2
chocolate-doom-f5396cf3c7d90ddb54c96be0a2c7ed6d41d21d10.zip
build: do not create an INSTALL file
If the general-instruction INSTALL file is not desired, just specify so in AUTOMAKE_OPTIONS rather than fiddling with it in autogen.sh.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/autogen.sh b/autogen.sh
index faed544d..0f3d1037 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,11 +1,5 @@
#!/bin/sh
-if [ -e INSTALL ]; then
- have_INSTALL=true
-else
- have_INSTALL=false
-fi
-
mkdir -p autotools
aclocal
@@ -14,13 +8,4 @@ automake -ac
autoconf
automake
-# The INSTALL file is autogenerated, so it isn't stored in version control.
-# As the file isn't present, automake's -a option will install generic
-# install instructions. So remove INSTALL if automake installed one.
-
-if ! $have_INSTALL; then
- rm -f INSTALL
-fi
-
./configure "$@"
-