Commit 8faf4a68 by Jim Wilson

(main): Pass INIT_ENVIRONMENT to putenv.

From-SVN: r9455
parent 33a79dfa
......@@ -4357,6 +4357,11 @@ main (argc, argv)
obstack_grow (&collect_obstack, argv[0], strlen (argv[0])+1);
putenv (obstack_finish (&collect_obstack));
#ifdef INIT_ENVIRONMENT
/* Set up any other necessary machine specific environment variables. */
putenv (INIT_ENVIRONMENT);
#endif
/* Choose directory for temp files. */
choose_temp_base ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment