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
be3a14bb
Commit
be3a14bb
authored
May 28, 1998
by
Jason Merrill
Committed by
Jason Merrill
May 27, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* index-prop: New file.
From-SVN: r20112
parent
67cf6db6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
0 deletions
+29
-0
contrib/ChangeLog
+4
-0
contrib/index-prop
+25
-0
No files found.
contrib/ChangeLog
View file @
be3a14bb
1998-05-28 Jason Merrill <jason@yorick.cygnus.com>
* index-prop: New file.
Sat May 23 23:38:49 1998 Matthias Klose <doko@cs.tu-berlin.de>
Sat May 23 23:38:49 1998 Matthias Klose <doko@cs.tu-berlin.de>
* test_summary: find good awk (copied from warn_summary).
* test_summary: find good awk (copied from warn_summary).
...
...
contrib/index-prop
0 → 100755
View file @
be3a14bb
#! /usr/bin/perl -wi
# Fix up the output of cvs diff -c so that it works with patch.
# We do this by propagating the full pathname from the Index: line
# into the diff itself.
#
# Thrown together by Jason Merrill <jason@cygnus.com>
while
(
<>
)
{
if
(
/^Index: (.*)/
)
{
$full
=
$1
;
print
;
for
(
1
..
7
)
{
$_
=
<>
;
s/ [^\t]+\t/ $full\t/
;
print
;
}
}
else
{
print
;
}
}
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