]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Change all occurances of
authorBarry Warsaw <barry@python.org>
Thu, 5 Oct 2000 18:45:53 +0000 (18:45 +0000)
committerBarry Warsaw <barry@python.org>
Thu, 5 Oct 2000 18:45:53 +0000 (18:45 +0000)
commit7d1219d9bdb9598c95636daac741896f2167b09f
tree899694e1f976e0196527ec9413a53f66538ea85c
parent3dc0a514e6d6dd1e1b6ed3aa82fcdaa909bfea7f
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.
configure
configure.in