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
3243be28
Commit
3243be28
authored
Jan 19, 1999
by
Gerald Pfeifer
Committed by
Gerald Pfeifer
Jan 19, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* egcs_update: Do not use xargs, but a backquote construct.
From-SVN: r24766
parent
747215f1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
4 deletions
+9
-4
contrib/ChangeLog
+4
-0
contrib/egcs_update
+5
-4
No files found.
contrib/ChangeLog
View file @
3243be28
1999-01-19 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* egcs_update: Do not use xargs, but a backquote construct.
1999-01-07 Alexandre Oliva <oliva@dcc.unicamp.br>
* test_summary (version): remove carriage return that gawk inserts
...
...
contrib/egcs_update
View file @
3243be28
...
...
@@ -50,11 +50,12 @@ fi
echo
"Pass 1: Updating autoconf and bison generated files"
# Do a CVS update on those files that exist in CVS directories. libg++
# makes sense to drop into the tree, but it isn't CVS-controlled.
for
i
in
`
find
.
-name
configure.in
-o
-name
'*.y'
`
X
=
`
for
i
in
\`
find
.
-name
configure.in
-o
-name
'*.y'
\
`
do
D
=
`
dirname
$i
`
/CVS
[
-f
$i
-a
-d
$D
]
&&
echo
$i
done
| xargs cvs
-q
update
D
=
\`
dirname
$i
\`
/CVS
[
-f
$i
-a
-d
$D
]
&&
echo
$i
done
`
cvs
-q
update
$X
echo
"Pass 2: Updating full tree"
...
...
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