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
7a774079
Commit
7a774079
authored
Dec 07, 2005
by
Ben Elliston
Committed by
Ben Elliston
Dec 08, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* newcvsroot: Remove.
From-SVN: r108190
parent
b2fbe3f4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
36 deletions
+4
-36
contrib/ChangeLog
+4
-0
contrib/newcvsroot
+0
-36
No files found.
contrib/ChangeLog
View file @
7a774079
2005
-
12
-
06
Ben
Elliston
<
bje
@au
.
ibm
.
com
>
*
newcvsroot
:
Remove
.
2005
-
11
-
03
Steven
Bosscher
<
stevenb
@suse
.
de
>
*
gcc_build
:
Fix
my
previous
checking
.
...
...
contrib/newcvsroot
deleted
100755 → 0
View file @
b2fbe3f4
#! /usr/bin/env bash
# Written by Roland McGrath <roland@gnu.org>
# Replaces all CVS/Root and CVS/Repository files in a checked-out CVS
# tree. Requires shell with # and % variable substitution (e.g. bash).
# Usage: newcvsroot <newroot> <modulename> <toplevel directory>
if
[
$#
!=
3
]
;
then
echo
"Note to svn users: use svn switch --relocate instead."
echo
echo
"usage:
`
basename
$0
`
<newroot> <modulename> <toplevel directory>"
exit
1
fi
root
=
$1
;
shift
module
=
$1
;
shift
topdir
=
$1
;
shift
rep
=
${
root
##*
:
}
case
"
$topdir
"
in
/
*
|
./
*
|
../
*
)
echo
>
&2
"
$0
wants relative path from top of checkout"
;
exit
1
;;
esac
find
$topdir
\(
-name
Repository
-o
-name
Root
\)
-print
|
while
read
f
;
do
case
"
$f
"
in
*
/CVS/Root
)
echo
$root
>
"
$f
"
;;
*
/CVS/Repository
)
r
=
${
module
}${
f
#
${
topdir
}}
echo
>
"
$f
"
$rep
/
${
r
%/CVS/Repository
}
;;
esac
done
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