From 05bf1fed99c7b7f0f9517668853bc71f53599773 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 14 Aug 2012 12:52:46 -0400 Subject: [PATCH] autogen: Fetch submodules before running automake Otherwise automake can't find src/libgsystem. --- autogen.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/autogen.sh b/autogen.sh index 4e9fcaef..00281da0 100755 --- a/autogen.sh +++ b/autogen.sh @@ -14,8 +14,6 @@ fi mkdir -p m4 -autoreconf --force --install --verbose - # Fetch submodules if needed if test ! -f src/libgsystem/README; then @@ -24,6 +22,7 @@ then fi git submodule update +autoreconf --force --install --verbose cd $olddir test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"