Skip to content

Commit

Permalink
autogen.sh: Pass --force to autoreconf
Browse files Browse the repository at this point in the history
Ensure we get all files installed when running autoreconf by passing
--force to overwrite previously-generated ones, which fixes running it
from tarballs.

Also revert Peter's local changes to pass arguments to configure, all of
which are the default now anyway, AIUI.
  • Loading branch information
fooishbar committed Jul 22, 2008
1 parent 880625e commit d8937ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ test -z "$srcdir" && srcdir=.
ORIGDIR=`pwd`
cd $srcdir

autoreconf -v --install || exit 1
autoreconf --force -v --install || exit 1
cd $ORIGDIR || exit $?

$srcdir/configure --enable-maintainer-mode --disable-dmx --enable-dri --enable-kdrive "$@"
$srcdir/configure --enable-maintainer-mode "$@"

0 comments on commit d8937ce

Please sign in to comment.