Changeset 3f5e31f in rtems-tools
- Timestamp:
- Sep 7, 2014, 12:45:36 AM (6 years ago)
- Branches:
- 4.10, 4.11, 5, master
- Children:
- 32cd4fc
- Parents:
- c4c8218
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
linkers/libiberty/make-temp-file.c
rc4c8218 r3f5e31f 58 58 /* Name of temporary file. 59 59 mktemp requires 6 trailing X's. */ 60 #define TEMP_FILE " ccXXXXXX"60 #define TEMP_FILE "rld--XXXXXX" 61 61 #define TEMP_FILE_LEN (sizeof(TEMP_FILE) - 1) 62 62 … … 112 112 char *tmpdir; 113 113 unsigned int len; 114 114 115 115 #ifdef VMS 116 116 /* Try VMS standard temp logical. */ … … 121 121 base = try_dir (getenv ("TEMP"), base); 122 122 #endif 123 123 124 124 #ifdef P_tmpdir 125 125 /* We really want a directory name here as if concatenated with say \dir … … 135 135 base = try_dir (usrtmp, base); 136 136 base = try_dir (tmp, base); 137 137 138 138 /* If all else fails, use the current directory! */ 139 139 if (base == 0)
Note: See TracChangeset
for help on using the changeset viewer.