Commit e1c84e1d by Richard Kenner

(choose_temp_base): On VMS, use proper syntax for current directory.

From-SVN: r13013
parent 0eb7ad36
...@@ -114,7 +114,11 @@ choose_temp_base () ...@@ -114,7 +114,11 @@ choose_temp_base ()
/* If all else fails, use the current directory! */ /* If all else fails, use the current directory! */
if (base == 0) if (base == 0)
#ifdef VMS
base = "[";
#else
base = "."; base = ".";
#endif
#else /* MPW */ #else /* MPW */
base = ":"; 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