mirror of git://gcc.gnu.org/git/gcc.git
Use GET_ENV_PATH_LIST for GCC_EXEC_PREFIX too. My goof, not Felix's.
From-SVN: r22513
This commit is contained in:
parent
3e81ad1642
commit
2325c774f8
|
|
@ -2,7 +2,6 @@ Mon Sep 21 01:53:05 1998 Felix Lee <flee@cygnus.com>
|
||||||
|
|
||||||
* c-lex.c (init_lex): Use getenv ("LANG"), not GET_ENVIRONMENT ().
|
* c-lex.c (init_lex): Use getenv ("LANG"), not GET_ENVIRONMENT ().
|
||||||
* cccp.c (main): Likewise.
|
* cccp.c (main): Likewise.
|
||||||
* gcc.c (process_command): Similarly for "GCC_EXEC_PREFIX".
|
|
||||||
|
|
||||||
* cccp.c, collect2.c, cpplib.c, gcc.c, config/i386/xm-cygwin32.h:
|
* cccp.c, collect2.c, cpplib.c, gcc.c, config/i386/xm-cygwin32.h:
|
||||||
Rename GET_ENVIRONMENT to GET_ENV_PATH_LIST, and fix some
|
Rename GET_ENVIRONMENT to GET_ENV_PATH_LIST, and fix some
|
||||||
|
|
|
||||||
|
|
@ -2563,7 +2563,7 @@ process_command (argc, argv)
|
||||||
int have_o = 0;
|
int have_o = 0;
|
||||||
int lang_n_infiles = 0;
|
int lang_n_infiles = 0;
|
||||||
|
|
||||||
gcc_exec_prefix = getenv ("GCC_EXEC_PREFIX");
|
GET_ENV_PATH_LIST (gcc_exec_prefix, "GCC_EXEC_PREFIX");
|
||||||
|
|
||||||
n_switches = 0;
|
n_switches = 0;
|
||||||
n_infiles = 0;
|
n_infiles = 0;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue