From bd5a346fe1f7e633284c54a812ccf03966e8cd8e Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Thu, 19 Mar 2009 15:18:16 -0400 Subject: [PATCH] Remove --force from autogen.sh as it makes things slower. --- autogen.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/autogen.sh b/autogen.sh index 6ab185f..a770936 100755 --- a/autogen.sh +++ b/autogen.sh @@ -6,8 +6,8 @@ die() exit 1 } -aclocal --force -I m4 || die "Failed to run aclocal." -autoheader --force || die "Failed to run autoheader." -libtoolize --force --copy || die "Failed to run libtoolize." -automake --force --add-missing || die "Failed to run automake." -autoconf --force || die "Failed to run autoconf." +aclocal -I m4 || die "Failed to run aclocal." +autoheader || die "Failed to run autoheader." +libtoolize --copy || die "Failed to run libtoolize." +automake --add-missing || die "Failed to run automake." +autoconf || die "Failed to run autoconf." -- 2.43.0