Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
79cf7628
Commit
79cf7628
authored
14 years ago
by
Pascal Obry
Committed by
Eric Botcazou
14 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* make-temp-file.c (choose_tmpdir): Append a dot to P_tmpdir if needed.
From-SVN: r162379
parent
31d06664
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletions
+10
-1
libiberty/ChangeLog
+4
-0
libiberty/make-temp-file.c
+6
-1
No files found.
libiberty/ChangeLog
View file @
79cf7628
2010-07-21 Pascal Obry <obry@adacore.com>
* make-temp-file.c (choose_tmpdir): Append a dot to P_tmpdir if needed.
2010-07-06 Ken Werner <ken.werner@de.ibm.com>
* floatformat.c (floatformat_ieee_half_big): New variable.
...
...
This diff is collapsed.
Click to expand it.
libiberty/make-temp-file.c
View file @
79cf7628
...
...
@@ -121,7 +121,12 @@ choose_tmpdir (void)
#endif
#ifdef P_tmpdir
base
=
try_dir
(
P_tmpdir
,
base
);
/* We really want a directory name here as if concatenated with say \dir
we do not end up with a double \\ which defines an UNC path. */
if
(
strcmp
(
P_tmpdir
,
"
\\
"
)
==
0
)
base
=
try_dir
(
"
\\
."
,
base
);
else
base
=
try_dir
(
P_tmpdir
,
base
);
#endif
/* Try /var/tmp, /usr/tmp, then /tmp. */
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment