From 9e10969c8123f45d418f45b896cacda8c1a14535 Mon Sep 17 00:00:00 2001 From: Marty Kraimer Date: Fri, 3 Apr 1998 16:08:19 +0000 Subject: [PATCH] add LOGNAME when looking for user --- src/makeBaseApp/makeBaseApp.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/makeBaseApp/makeBaseApp.pl b/src/makeBaseApp/makeBaseApp.pl index b2fb4366b..47c3cf8b6 100755 --- a/src/makeBaseApp/makeBaseApp.pl +++ b/src/makeBaseApp/makeBaseApp.pl @@ -219,7 +219,7 @@ sub GetUser # no args # add to this list if new possibilities arise, # currently it's UNIX and WIN32: - $user=$ENV{USER} || $ENV{USERNAME} || Win32::LoginName(); + $user=$ENV{USER} || $ENV{USERNAME} || $ENV{LOGNAME} || Win32::LoginName(); unless ($user) {