Skip to content

Commit

Permalink
autogen.sh: Allow skipping configure via NOCONFIGURE env var
Browse files Browse the repository at this point in the history
Fixes: #227
  • Loading branch information
erig0 committed Sep 11, 2017
1 parent 34b616a commit 11f0f5b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion autogen.sh
Expand Up @@ -17,4 +17,6 @@ intltoolize --force --automake
autoreconf --force -v --install --symlink || exit 1
cd $ORIGDIR || exit $?

$srcdir/configure "$@"
if test -z "$NOCONFIGURE"; then
$srcdir/configure "$@"
fi

0 comments on commit 11f0f5b

Please sign in to comment.