summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorJérémie Courrèges-Anglas <jca@wxcvbn.org>2013-01-21 02:08:18 +0100
committerJérémie Courrèges-Anglas <jca@wxcvbn.org>2013-01-21 03:23:05 +0100
commitc3aa7c8bba7794d8856156ac3c361e952847648d (patch)
tree96e398774d23b4206b3897b4559f9e84bec3c534 /autogen.sh
parent09a464eb213212ac6538bc4bba9d2e391562b100 (diff)
downloadratpoison-c3aa7c8bba7794d8856156ac3c361e952847648d.zip
more up-to-date autotools practices
* use proper AC_INIT / AM_INIT_AUTOMAKE arguments * install macros in m4/ * install junk build files in build-aux/ * replace hand-rolled autogen.sh by autoreconf -i * sync .gitignore
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh11
1 files changed, 2 insertions, 9 deletions
diff --git a/autogen.sh b/autogen.sh
index 5a1be80..18a6495 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -19,13 +19,6 @@
#
# $Id: autogen.sh,v 1.8 2006/03/16 00:33:34 sabetts Exp $
#
-# usage: ./autogen.sh [-f]
-# option "-f" means forcefully create symlinks for missing files
-# (by default: copies are made only if necessary)
+# This file is just a wrapper for autoreconf
-if [ x"$1" = x-f ]
- then shift ; am_opt='--force'
- else am_opt='--copy'
-fi
-
-aclocal && autoheader && automake -a $am_opt && autoconf
+autoreconf -i "$@"