diff options
author | Barry Warsaw <barry@python.org> | 2000-10-05 18:45:53 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2000-10-05 18:45:53 (GMT) |
commit | 7d1219d9bdb9598c95636daac741896f2167b09f (patch) | |
tree | 899694e1f976e0196527ec9413a53f66538ea85c /configure | |
parent | 3dc0a514e6d6dd1e1b6ed3aa82fcdaa909bfea7f (diff) | |
download | cpython-7d1219d9bdb9598c95636daac741896f2167b09f.zip cpython-7d1219d9bdb9598c95636daac741896f2167b09f.tar.gz cpython-7d1219d9bdb9598c95636daac741896f2167b09f.tar.bz2 |
Change all occurances of
test -d "$directory"
to
test ! -z "directory" -a -d "directory"
Apparently, on SunOS 4.1.4_JL (and other?) OSes, -d on an empty string
always returns true. This closes SF bug #115392.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -3102,10 +3102,10 @@ if test "$with_threads" = "no" then USE_THREAD_MODULE="#" else - if test -d "$with_threads" + if test ! -z $with_threads -a -d $with_threads then LDFLAGS="$LDFLAGS -L$with_threads" fi - if test -d "$withval" + if test ! -z $withval -a -d $withval then LDFLAGS="$LDFLAGS -L$withval" fi cat >> confdefs.h <<\EOF @@ -3782,7 +3782,7 @@ EOF DYNLOADFILE="dynload_dl.o" dldir=$withval -if test -d "$dldir" +if test ! -z $dldir -a -d $dldir then LDFLAGS="$LDFLAGS -L$dldir" else { echo "configure: error: proper usage is --with-sgi-dl=DIRECTORY" 1>&2; exit 1; } fi @@ -3807,7 +3807,7 @@ EOF DYNLOADFILE="dynload_dl.o" dldir=`echo "$withval" | sed 's/,.*//'` dlddir=`echo "$withval" | sed 's/.*,//'` -if test -d "$dldir" -a -d "$dlddir" +if test ! -z "$dldir" -a -d "$dldir" -a ! -z "$dlddir" -a -d "$dlddir" then LDFLAGS="$LDFLAGS -L$dldir -L$dlddir" else { echo "configure: error: proper usage is --with-dl-dld=DL_DIRECTORY" 1>&2; exit 1; } fi |