From 6bc9480ad1cdb0bbb5a18e948256cbee2036639e Mon Sep 17 00:00:00 2001 From: Daniel Stone Date: Wed, 24 Oct 2012 00:58:51 +1100 Subject: [PATCH] autogen: use --force instead of --symlink --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 --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index a6d7699..c7467f1 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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 -- 2.7.4