summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>2000-10-26 01:18:12 +0000
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>2000-10-26 01:18:12 +0000
commit1409de39e02ca26364ce908b6ccc6091640f3aae (patch)
tree25273fb8a9b5d167bce973a5418cd76175b9f9e6 /contrib
parentd05ae33891171495f57647323aeb3328cede34aa (diff)
downloadgcc-1409de39e02ca26364ce908b6ccc6091640f3aae.tar.gz
* gcc_build: Fix typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37066 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib')
-rw-r--r--contrib/ChangeLog4
-rwxr-xr-xcontrib/gcc_build6
2 files changed, 7 insertions, 3 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog
index e22a25b922e..09426a831d7 100644
--- a/contrib/ChangeLog
+++ b/contrib/ChangeLog
@@ -1,3 +1,7 @@
+2000-10-25 Mark Mitchell <mark@codesourcery.com>
+
+ * gcc_build: Fix typos.
+
2000-10-14 Joseph S. Myers <jsm28@cam.ac.uk>
* gperf-2.7-19981006.pat: Remove.
diff --git a/contrib/gcc_build b/contrib/gcc_build
index 8def5754d99..9cae43d0f07 100755
--- a/contrib/gcc_build
+++ b/contrib/gcc_build
@@ -167,7 +167,7 @@ export_gcc() {
changedir ${DESTINATION}
# Go up one level.
changedir ..
- # Build a tarbal off the source directory.
+ # Build a tarball of the source directory.
tar czf ${TARFILE} \
--exclude=${OBJDIR} \
--exclude=CVS \
@@ -230,14 +230,14 @@ UPDATE=0
########################################################################
# Parse the options.
-while getopts "c:d:m:t:" ARG; do
+while getopts "c:d:m:p:t:u:" ARG; do
case $ARG in
c) CONFIGURE_OPTIONS="${OPTARG}";;
d) DESTINATION="${OPTARG}";;
m) MAKE_OPTIONS="${OPTARG}";;
- u) CVS_USERNAME="${OPTARG}";;
p) CVS_PROTOCOL="${OPTARG}";;
t) CVS_TARGFILE="${OPTARG}";;
+ u) CVS_USERNAME="${OPTARG}";;
\?) usage;;
esac
done