autogen: use --force instead of --symlink
authorDaniel Stone <daniel@fooishbar.org>
Tue, 23 Oct 2012 13:58:51 +0000 (00:58 +1100)
committerDaniel Stone <daniel@fooishbar.org>
Tue, 23 Oct 2012 13:59:37 +0000 (00:59 +1100)
--force copies and installs all the autotools support files, rather than
making symlinks, which can sometimes break things when upgrading your
system autotools.  This is what xserver does.

Signed-off-by: Daniel Stone <daniel@fooishbar.org>
autogen.sh

index a6d7699..c7467f1 100755 (executable)
@@ -6,7 +6,7 @@ test -z "$srcdir" && srcdir=.
 ORIGDIR=`pwd`
 cd "$srcdir"
 
-autoreconf --verbose --install --symlink --warnings=all
+autoreconf --verbose --install --force --warnings=all
 cd "$ORIGDIR"
 
 if test -z "$NOCONFIGURE"; then