summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-08-12 13:18:25 (GMT)
committerGuido van Rossum <guido@python.org>1994-08-12 13:18:25 (GMT)
commita0e9a77183c14683d2da2f6ce601db0c12952d33 (patch)
tree67604d22086cb700dd2fcdad04aa70d2354b8d8d /configure
parent3f9a6ec9e672acb733db1633d5544120e1bd6841 (diff)
downloadcpython-a0e9a77183c14683d2da2f6ce601db0c12952d33.zip
cpython-a0e9a77183c14683d2da2f6ce601db0c12952d33.tar.gz
cpython-a0e9a77183c14683d2da2f6ce601db0c12952d33.tar.bz2
* configure.in, Makefile.in: remove the AC_PREFIX() call -- it's
more trouble than it's worth at CWI and most other people seem to install Python in the default (/usr/local) anway. Changed comment describing --prefix in Makefile.in
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure16
1 files changed, 0 insertions, 16 deletions
diff --git a/configure b/configure
index a09bfa0..875647e 100755
--- a/configure
+++ b/configure
@@ -316,22 +316,6 @@ ac_ext=c
ac_cpp='${CPP} $CFLAGS'
ac_compile='${CC-cc} $CFLAGS $LDFLAGS conftest.${ac_ext} -o conftest $LIBS >/dev/null 2>&1'
-if test -z "$prefix"
-then
- test -n "$silent" || echo "checking for python to derive installation directory prefix"
- IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$IFS:"
- for ac_dir in $PATH; do
- test -z "$ac_dir" && ac_dir=.
- if test $ac_dir != . && test -f $ac_dir/python; then
- # Not all systems have dirname.
- prefix=`echo $ac_dir|sed 's%/[^/][^/]*$%%'`
- break
- fi
- done
- IFS="$ac_save_ifs"
- test -n "$verbose" && echo " chose installation directory prefix ${prefix}"
-fi
-
# Don't suppress compiler output when --verbose is specified
test -n "$verbose" &&
ac_compile=`echo "$ac_compile" | sed "s|>/dev/null 2>&1||"`