From 16e4cd0ea95cadf119ffe324729dc23a94bd6ba5 Mon Sep 17 00:00:00 2001 From: Eric Garver Date: Thu, 13 Jun 2019 10:00:05 -0400 Subject: [PATCH] fix: autogen: don't call configure Pretty much every other automake based build does _not_ call configure from autogen.sh. Let's follow the "standard". --- autogen.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/autogen.sh b/autogen.sh index 2bfc8f7eb..175dea587 100755 --- a/autogen.sh +++ b/autogen.sh @@ -16,7 +16,3 @@ intltoolize --force --automake autoreconf --force -v --install --symlink || exit 1 cd $ORIGDIR || exit $? - -if test -z "$NOCONFIGURE"; then - $srcdir/configure "$@" -fi