Skip to content

Commit d8937ce

Browse files
committed
autogen.sh: Pass --force to autoreconf
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.
1 parent 880625e commit d8937ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

autogen.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ test -z "$srcdir" && srcdir=.
66
ORIGDIR=`pwd`
77
cd $srcdir
88

9-
autoreconf -v --install || exit 1
9+
autoreconf --force -v --install || exit 1
1010
cd $ORIGDIR || exit $?
1111

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

0 commit comments

Comments
 (0)