~vcs-imports/render/master

« back to all changes in this revision

Viewing changes to autogen.sh

  • Committer: Adam Jackson
  • Author(s): Colin Walters
  • Date: 2013-01-15 19:32:14 UTC
  • Revision ID: git-v1:1af52cb334377611233d7dc156bc1e6f7923756d
autogen.sh: Implement GNOME Build API

http://people.gnome.org/~walters/docs/build-api.txt

Signed-off-by: Adam Jackson <ajax@redhat.com>

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
autoreconf -v --install || exit 1
10
10
cd $ORIGDIR || exit $?
11
11
 
12
 
$srcdir/configure --enable-maintainer-mode "$@"
 
12
if test -z "$NOCONFIGURE"; then
 
13
    $srcdir/configure "$@"
 
14
fi