[gdm] autogen: Match more closely what gnome-autogen.sh does



commit 33d9344a323fb58709d3c29668926c46c5a3aa44
Author: Colin Walters <walters verbum org>
Date:   Mon Nov 11 13:42:19 2013 -0500

    autogen: Match more closely what gnome-autogen.sh does
    
    This was failing in Continuous after
    See https://bugzilla.gnome.org/show_bug.cgi?id=711818
    and rather than debug it I'm just going to change it to do
    what gnome-autogen.sh does, which works.

 autogen.sh |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/autogen.sh b/autogen.sh
index 2fd9755..3c3a3de 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -19,8 +19,10 @@ if test -z $INTLTOOLIZE; then
         exit 1
 fi
 
-autopoint --force
-AUTOPOINT='intltoolize --automake --copy' autoreconf --force --install --verbose
+set -e
+
+intltoolize --force --copy --automake 
+autoreconf --force --install --verbose
 
 cd $olddir
 test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]