]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
Fix up autogen to error out if it hits a problem and rerun autoreconf after intltoolize.
authorRay Strode <rstrode@redhat.com>
Thu, 1 Nov 2007 05:03:55 +0000 (01:03 -0400)
committerRay Strode <rstrode@redhat.com>
Thu, 1 Nov 2007 05:03:55 +0000 (01:03 -0400)
autogen.sh

index 2c5bd8a759d07c5a6bd226b9fc048fecf9991831..bce355f117be0f7023aedee9f34279018a48309d 100755 (executable)
@@ -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 $@)