summaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2007-11-01 01:03:55 -0400
committerRay Strode <rstrode@redhat.com>2007-11-01 01:03:55 -0400
commitab84465fa71f47044784d0d4f7d90c8016a7994e (patch)
tree47da230d6d9130acf61c1b72e2a8550dda551056 /autogen.sh
parenta5081f516ab1054640a70e1db19006be4d97a2e8 (diff)
downloadplymouth-ab84465fa71f47044784d0d4f7d90c8016a7994e.tar.gz
plymouth-ab84465fa71f47044784d0d4f7d90c8016a7994e.tar.xz
plymouth-ab84465fa71f47044784d0d4f7d90c8016a7994e.zip
Fix up autogen to error out if it hits a problem and rerun autoreconf after intltoolize.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index 2c5bd8a..bce355f 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 $@)