From ec10535cdca6e67756b332cc9a0a4ba7470c85c0 Mon Sep 17 00:00:00 2001 From: Calle Erlandsson Date: Fri, 6 Nov 2015 13:28:26 +0100 Subject: [PATCH] Use autoreconf instead of autogen.sh autoreconf can take care of the work autogen.sh is currently doing. The autoreconf(1) manpage states: > Run `autoconf' (and `autoheader', `aclocal', `automake', > `autopoint' (formerly `gettextize'), and `libtoolize' where > appropriate) repeatedly to remake the GNU Build System files in > specified DIRECTORIES and their subdirectories (defaulting to `.'). --- DEVELOPING.md | 2 +- autogen.sh | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) delete mode 100755 autogen.sh diff --git a/DEVELOPING.md b/DEVELOPING.md index 565ddb4..427f907 100644 --- a/DEVELOPING.md +++ b/DEVELOPING.md @@ -38,7 +38,7 @@ See the dependencies in the `README.md`. To build from a fresh checkout: - ./autogen.sh + autoreconf --install ./configure make diff --git a/autogen.sh b/autogen.sh deleted file mode 100755 index 0d3ae1b..0000000 --- a/autogen.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -aclocal && autoconf && autoheader && automake --add-missing --copy