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
1971aca7
Commit
1971aca7
authored
May 09, 2002
by
Mark Mitchell
Committed by
Mark Mitchell
May 09, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc_release: Correct upload handling.
From-SVN: r53315
parent
f979570e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
maintainer-scripts/ChangeLog
+4
-0
maintainer-scripts/gcc_release
+5
-2
No files found.
maintainer-scripts/ChangeLog
View file @
1971aca7
2002-05-08 Mark Mitchell <mark@codesourcery.com>
* gcc_release: Correct upload handling.
2002-04-22 Mark Mitchell <mark@codesourcery.com>
* gcc_release (build_diffs): Remove reference to Chill.
...
...
maintainer-scripts/gcc_release
View file @
1971aca7
...
...
@@ -337,9 +337,11 @@ upload_files() {
# Make sure the directory exists on the server.
if
[
$LOCAL
-eq
0
]
;
then
${
SSH
}
-l
${
GCC_USERNAME
}
${
GCC_HOSTNAME
}
mkdir
${
FTP_PATH
}
UPLOAD_PATH
=
"
${
GCC_USERNAME
}
@
${
GCC_HOSTNAME
}
:
${
FTP_PATH
}
"
else
mkdir
-p
"
${
FTP_PATH
}
"
\
||
error
"Could not create
\`
${
FTP_PATH
}
'"
UPLOAD_PATH
=
${
FTP_PATH
}
fi
for
x
in
gcc
*
.gz gcc
*
.bz2
;
do
...
...
@@ -347,8 +349,9 @@ upload_files() {
# Make sure the file will be readable on the server.
chmod a+r
${
x
}
# Copy it.
${
SCP
}
${
x
}
${
FTP_PATH
}
||
\
error
"Could not upload
${
x
}
"
if
[
$LOCAL
-eq
0
]
;
then
${
SCP
}
${
x
}
${
UPLOAD_PATH
}
||
error
"Could not upload
${
x
}
"
fi
fi
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