From: Ray Strode Date: Thu, 1 Nov 2007 05:03:55 +0000 (-0400) Subject: Fix up autogen to error out if it hits a problem and rerun autoreconf after intltoolize. X-Git-Tag: 0.1.0~143^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ab84465fa71f47044784d0d4f7d90c8016a7994e;p=thirdparty%2Fplymouth.git Fix up autogen to error out if it hits a problem and rerun autoreconf after intltoolize. --- diff --git a/autogen.sh b/autogen.sh index 2c5bd8a7..bce355f1 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,6 +1,7 @@ #!/bin/sh (cd $(dirname $0); - autoreconf --install --symlink; - intltoolize --force; + autoreconf --install --symlink && + intltoolize --force && + autoreconf --install --symlink && ./configure --enable-maintainer-mode $@)