SIGN IN SIGN UP

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.
B
Barry Warsaw committed
7d1219d9bdb9598c95636daac741896f2167b09f
Parent: 3dc0a51