From: Richard Kenner Date: Wed, 23 Oct 1996 21:36:37 +0000 (-0400) Subject: (choose_temp_base): On VMS, use proper syntax for current directory. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e1c84e1d7ac505468ec751adfca86ace9557f89f;p=gcc.git (choose_temp_base): On VMS, use proper syntax for current directory. From-SVN: r13013 --- diff --git a/gcc/choose-temp.c b/gcc/choose-temp.c index 0383832a3b6..2afa68a0dc3 100644 --- a/gcc/choose-temp.c +++ b/gcc/choose-temp.c @@ -114,7 +114,11 @@ choose_temp_base () /* If all else fails, use the current directory! */ if (base == 0) +#ifdef VMS + base = "["; +#else base = "."; +#endif #else /* MPW */ base = ":";