aboutsummaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-12-09 00:02:44 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-12-09 00:02:44 +0000
commite0f2022da6412a983994b41158e72d04b652a4c1 (patch)
treea0fe7bd02bd7b04cdd5834a80543e0911dc13f89 /autogen.sh
parent8ebf661ae8c117bd464f32e898736fb644b71874 (diff)
When libtoolizing, *don't* forcibly copy over all the files needed; that
will override our versions of "config.guess" and "config.sub", which we don't want. (We don't use "--force" with "automake --add-missing".) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4363 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index ea3b1c64fe..3cb487ea8d 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -2,7 +2,7 @@
#
# Run this to generate all the initial makefiles.
#
-# $Id: autogen.sh,v 1.13 2000/11/22 04:03:22 gram Exp $
+# $Id: autogen.sh,v 1.14 2001/12/09 00:02:44 guy Exp $
DIE=true
PROJECT="Ethereal"
@@ -69,7 +69,7 @@ esac
$DIE
-libtoolize --copy --force || exit 1
+libtoolize --copy || exit 1
if test -z "$*"; then
echo "Running ./configure with no arguments. If you wish to pass any,"