From bc516182d4c8082ea6f3ec846e289eda3f0f8e63 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Sun, 9 Oct 2011 15:54:15 -0400 Subject: [PATCH] autogen.sh: Conform to build-api.txt http://people.gnome.org/~walters/docs/build-api.txt --- autogen.sh | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/autogen.sh b/autogen.sh index 00143b7..2cbe399 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,5 +1,7 @@ #!/bin/sh -(cd $(dirname $0); - autoreconf --install --symlink && - ./configure $@) +cd $(dirname $0) +autoreconf --install --symlink +if test -z "$NOCONFIGURE"; then + exec ./configure $@ +fi -- 1.7.6.4