mirror of git://gcc.gnu.org/git/gcc.git
parent
4667f70546
commit
59c341cbd5
|
@ -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>
|
2000-10-14 Joseph S. Myers <jsm28@cam.ac.uk>
|
||||||
|
|
||||||
* gperf-2.7-19981006.pat: Remove.
|
* gperf-2.7-19981006.pat: Remove.
|
||||||
|
|
|
@ -167,7 +167,7 @@ export_gcc() {
|
||||||
changedir ${DESTINATION}
|
changedir ${DESTINATION}
|
||||||
# Go up one level.
|
# Go up one level.
|
||||||
changedir ..
|
changedir ..
|
||||||
# Build a tarbal off the source directory.
|
# Build a tarball of the source directory.
|
||||||
tar czf ${TARFILE} \
|
tar czf ${TARFILE} \
|
||||||
--exclude=${OBJDIR} \
|
--exclude=${OBJDIR} \
|
||||||
--exclude=CVS \
|
--exclude=CVS \
|
||||||
|
@ -230,14 +230,14 @@ UPDATE=0
|
||||||
########################################################################
|
########################################################################
|
||||||
|
|
||||||
# Parse the options.
|
# Parse the options.
|
||||||
while getopts "c:d:m:t:" ARG; do
|
while getopts "c:d:m:p:t:u:" ARG; do
|
||||||
case $ARG in
|
case $ARG in
|
||||||
c) CONFIGURE_OPTIONS="${OPTARG}";;
|
c) CONFIGURE_OPTIONS="${OPTARG}";;
|
||||||
d) DESTINATION="${OPTARG}";;
|
d) DESTINATION="${OPTARG}";;
|
||||||
m) MAKE_OPTIONS="${OPTARG}";;
|
m) MAKE_OPTIONS="${OPTARG}";;
|
||||||
u) CVS_USERNAME="${OPTARG}";;
|
|
||||||
p) CVS_PROTOCOL="${OPTARG}";;
|
p) CVS_PROTOCOL="${OPTARG}";;
|
||||||
t) CVS_TARGFILE="${OPTARG}";;
|
t) CVS_TARGFILE="${OPTARG}";;
|
||||||
|
u) CVS_USERNAME="${OPTARG}";;
|
||||||
\?) usage;;
|
\?) usage;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue