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
f2bd1eb9
Commit
f2bd1eb9
authored
19 years ago
by
Steven Bosscher
Committed by
Steven Bosscher
19 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc_build: Fix my previous checking.
From-SVN: r106449
parent
b03e9863
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
contrib/ChangeLog
+4
-0
contrib/gcc_build
+5
-2
No files found.
contrib/ChangeLog
View file @
f2bd1eb9
2005
-
11
-
03
Steven
Bosscher
<
stevenb
@suse
.
de
>
*
gcc_build
:
Fix
my
previous
checking
.
2005
-
11
-
01
Joseph
S
.
Myers
<
joseph
@codesourcery
.
com
>
*
gcc_update
:
Include
revision
number
in
LAST_UPDATED
.
...
...
This diff is collapsed.
Click to expand it.
contrib/gcc_build
View file @
f2bd1eb9
...
...
@@ -201,7 +201,8 @@ SVN_SERVER="gcc.gnu.org"
# The path to the repository on that server.
SVN_REPOSITORY
=
"/svn/gcc/"
# The branch to check out from that server.
SVN_BRANCH
=
"trunk"
# Defaults to trunk if no branch is defined with -b.
SVN_BRANCH
=
""
# The SVN protocol to use.
SVN_PROTOCOL
=
"svn"
# The username to use when connecting to the server.
...
...
@@ -285,7 +286,9 @@ if [ ${CHECKOUT} -eq 0 ] && test -n "${SVN_BRANCH}"; then
fi
# Validate the branch name.
if
test
"
${
SVN_BRANCH
}
"
!=
"trunk"
;
then
if
test
-n
"
${
SVN_BRANCH
}
"
;
then
SVN_BRANCH
=
"trunk"
;
else
SVN_BRANCH
=
"branches/
${
SVN_BRANCH
}
"
;
fi
...
...
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