From afcbb7a2c5c8a05d11e054e09c8c4e53b571a435 Mon Sep 17 00:00:00 2001 From: Andrea Canciani Date: Mon, 14 May 2012 10:44:31 +0200 Subject: [PATCH] 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. --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" "$@"