diff options
-rwxr-xr-x | autogen.sh | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -1,2 +1,9 @@ -#!/bin/sh -autoreconf --install +#! /bin/sh + +test -n "$srcdir" || srcdir=`dirname "$0"` +test -n "$srcdir" || srcdir=. +( + cd "$srcdir" && + autoreconf --force -v --install +) || exit +test -n "$NOCONFIGURE" || "$srcdir/configure" "$@" |