summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-12-09 00:02:44 +0000
committerGuy Harris <guy@alum.mit.edu>2001-12-09 00:02:44 +0000
commit1a2c3446a39550d3e4e7f3a2407df16a88db5896 (patch)
treea0fe7bd02bd7b04cdd5834a80543e0911dc13f89 /autogen.sh
parentc6ac943216ed9b9583a6532c09321f53eb3c02e9 (diff)
downloadwireshark-1a2c3446a39550d3e4e7f3a2407df16a88db5896.tar.gz
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".) svn path=/trunk/; revision=4363
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,"