mirror of
git://git.sv.gnu.org/autoconf
synced 2025-02-17 14:01:27 +08:00
* bin/autom4te.in: Don't rely on $HOME being defined.
Reported by Marc Espie as PR/233.
This commit is contained in:
parent
f6d54deb80
commit
456b9c0a6f
@ -1,3 +1,8 @@
|
||||
2003-06-20 Akim Demaille <akim@epita.fr>
|
||||
|
||||
* bin/autom4te.in: Don't rely on $HOME being defined.
|
||||
Reported by Marc Espie as PR/233.
|
||||
|
||||
2003-06-20 Akim Demaille <akim@epita.fr>
|
||||
|
||||
* lib/autotest/general.m4: Use at_times_file only if used.
|
||||
|
@ -1156,7 +1156,7 @@ sub freeze ($)
|
||||
mktmpdir ('am4t');
|
||||
load_configuration ($ENV{'AUTOM4TE_CFG'} || "$datadir/autom4te.cfg");
|
||||
load_configuration ("$ENV{'HOME'}/.autom4te.cfg")
|
||||
if -f "$ENV{'HOME'}/.autom4te.cfg";
|
||||
if exists $ENV{'HOME'} && -f "$ENV{'HOME'}/.autom4te.cfg";
|
||||
load_configuration (".autom4te.cfg")
|
||||
if -f ".autom4te.cfg";
|
||||
parse_args;
|
||||
|
Loading…
Reference in New Issue
Block a user