diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-01-05 10:33:59 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-01-05 10:33:59 (GMT) |
commit | c5bf5a00a35dae7d31d1b6eeada0567d7973c5c7 (patch) | |
tree | 3f9fdb52b1895205530adc2dd8ceddf3d02b67ad /configure | |
parent | dea59e5755526be328aa6d330ce730e387a7562d (diff) | |
download | cpython-c5bf5a00a35dae7d31d1b6eeada0567d7973c5c7.zip cpython-c5bf5a00a35dae7d31d1b6eeada0567d7973c5c7.tar.gz cpython-c5bf5a00a35dae7d31d1b6eeada0567d7973c5c7.tar.bz2 |
Always set SVNVERSION to "exported" if it otherwise fails.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 41852 . +# From configure.in Revision: 41923 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.59 for python 2.5. # @@ -3576,10 +3576,8 @@ test -n "$AR" || AR="ar" -for ac_prog in svnversion -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 +# Extract the first word of "svnversion", so it can be a program name with args. +set dummy svnversion; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_SVNVERSION+set}" = set; then @@ -3595,7 +3593,7 @@ do test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_SVNVERSION="$ac_prog" + ac_cv_prog_SVNVERSION="found" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi @@ -3613,10 +3611,12 @@ else echo "${ECHO_T}no" >&6 fi - test -n "$SVNVERSION" && break -done -test -n "$SVNVERSION" || SVNVERSION="echo no svnversion" - +if test $SVNVERSION = found +then + SVNVERSION="svnversion \$(srcdir)" +else + SVNVERSION="echo exported" +fi case $MACHDEP in bsdos*|hp*|HP*) |