From a4007f6001dc24c8a2375e4dabcc77e8abbd6f8a Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Mon, 22 Aug 2011 20:38:24 +0100 Subject: [PATCH] build: create config.aux in autogen.sh Organization: Straylight/Edgeware From: Richard Kettlewell Required on lenny. Presumably the later autotools create it automatically. --- autogen.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/autogen.sh b/autogen.sh index a63049a..90a5b88 100755 --- a/autogen.sh +++ b/autogen.sh @@ -21,6 +21,7 @@ set -e srcdir=$(dirname $0) here=$(pwd) cd $srcdir +mkdir -p config.aux if test -d $HOME/share/aclocal; then aclocal --acdir=$HOME/share/aclocal else -- [mdw]