summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorAndrea Canciani <ranma42@gmail.com>2012-05-14 10:44:31 +0200
committerAndrea Canciani <ranma42@gmail.com>2012-05-26 16:04:33 +0200
commitafcbb7a2c5c8a05d11e054e09c8c4e53b571a435 (patch)
tree3b241cc069ecd22def781c5a0abef907d97ba4f7 /autogen.sh
parent38d03ea7488097f2b1194f546bd1331af189b809 (diff)
build: Do not replace existing files
The existing INSTALL file is currently being replaced at every autogen.sh run with the default one. This is not desired, because INSTALL contains some cairo-specific information.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index acb23c730..4d113f8be 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -25,7 +25,7 @@ fi
> src/Makefile.am.features
touch ChangeLog
-autoreconf --force --install --verbose || exit $?
+autoreconf --install --verbose || exit $?
cd $ORIGDIR
test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"