fixed null username

This commit is contained in:
Dave Goodwin 2006-11-11 01:38:49 +00:00
parent 29335b4442
commit 11c8930548
2 changed files with 4882 additions and 3156 deletions

8035
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -232,6 +232,9 @@ if test "x${OS_IS_WIN}" = "x1"; then
fi
if test -z "$username"; then username=$USER; fi
if test -z "$username"; then username=$USERNAME; fi
if test -z "$username"; then username=`whoami`; fi
AC_SUBST(username)
AC_SUBST(ctroot)