blob: 88ee4d68f79075aca49a2e83a85ceb46f82d2fe3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
--- bootstrap.orig 2005-01-07 01:26:26.000000000 -0800
+++ bootstrap 2007-09-22 19:46:15.000000000 -0700
@@ -44,3 +44,3 @@
case $autoconf_version in
- 2.5*)
+ 2.[56]*)
have_autoconf=true
@@ -98,25 +98 @@
$AUTOCONF || exit $?
-
-cd $ORIGDIR || exit $?
-
-echo
-echo "I am going to run ./configure with the following arguments:"
-echo
-echo " --enable-maintainer-mode $AUTOGEN_CONFIGURE_ARGS $@"
-echo
-
-if test -z "$*"; then
- echo "If you wish to pass additional arguments, please specify them "
- echo "on the $0 command line or set the AUTOGEN_CONFIGURE_ARGS "
- echo "environment variable."
- echo
-fi
-
-$srcdir/configure --enable-maintainer-mode $AUTOGEN_CONFIGURE_ARGS "$@"
-RC=$?
-if test $RC -ne 0; then
- echo
- echo "Configure failed or did not finish!"
- exit $RC
-fi
-
|