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
fa273066
Commit
fa273066
authored
May 11, 1999
by
Jeffrey A Law
Committed by
Jeff Law
May 11, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fixproto: Change "mkdir" calls to "mkdir -p"
From-SVN: r26894
parent
49da3efb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
gcc/ChangeLog
+2
-0
gcc/fixproto
+3
-3
No files found.
gcc/ChangeLog
View file @
fa273066
Tue
May
11
23
:
55
:
49
1999
Jeffrey
A
Law
(
law
@cygnus
.
com
)
*
fixproto
:
Change
"mkdir"
calls
to
"mkdir -p"
*
fixinc
/
inclhack
.
def
(
io_def_quotes
)
:
Consistently
allow
multiple
whitespace
characters
between
the
"define"
and
the
name
of
the
macro
.
*
fixinc
/
fixincl
.
x
,
fixinc
/
inclhack
.
sh
:
Rebuilt
.
...
...
gcc/fixproto
View file @
fa273066
...
...
@@ -94,7 +94,7 @@ fi
if
[
\!
-d
$abs_target_dir
]
;
then
echo
$progname
\:
creating directory
$rel_target_dir
mkdir
$abs_target_dir
mkdir
-p
$abs_target_dir
fi
echo
$progname
\:
populating
\`
$rel_target_dir
\'
...
...
@@ -175,7 +175,7 @@ for code in ALL STD ; do
abs_target_subdir
=
${
abs_target_dir
}
/
${
rel_source_subdir
}
if
[
\!
-d
$abs_target_subdir
]
;
then
if
mkdir
$abs_target_subdir
;
then
if
mkdir
-p
$abs_target_subdir
;
then
subdirs_made
=
"
$abs_target_subdir
$subdirs_made
"
fi
fi
...
...
@@ -202,7 +202,7 @@ for code in ALL STD ; do
# Create the dir where this file will go when fixed.
xxdir
=
`
echo
./
$file
| sed
-e
's|/[^/]*$||'
`
if
[
\!
-d
$abs_target_subdir
/
$xxdir
]
;
then
if
mkdir
$abs_target_subdir
/
$xxdir
;
then
if
mkdir
-p
$abs_target_subdir
/
$xxdir
;
then
subdirs_made
=
"
$abs_target_subdir
/
$xxdir
$subdirs_made
"
fi
fi
...
...
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