summaryrefslogtreecommitdiff
path: root/contrib/gcc_build
diff options
context:
space:
mode:
authorMark Mitchell <mark@codesourcery.com>2000-10-26 01:18:12 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>2000-10-26 01:18:12 +0000
commit59c341cbd597446ab650612f6ad5f1c956b73bf2 (patch)
tree25273fb8a9b5d167bce973a5418cd76175b9f9e6 /contrib/gcc_build
parent4667f7054615e6c51d1eac60350ecc39377b9b8b (diff)
downloadgcc-59c341cbd597446ab650612f6ad5f1c956b73bf2.tar.gz
* gcc_build: Fix typos.
From-SVN: r37066
Diffstat (limited to 'contrib/gcc_build')
-rwxr-xr-xcontrib/gcc_build6
1 files changed, 3 insertions, 3 deletions
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