diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-12 00:29:37 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-12 00:29:37 +0000 |
commit | fd87d7ed9028d475db1da09bc1ccfc06e0be5732 (patch) | |
tree | d29ea666c417d6a7f79fb9954b349c12a51081ff /contrib/gcc_build | |
parent | 3f6d7ce005adf895ecad57ebbc52c8b8279ca15f (diff) | |
download | gcc-fd87d7ed9028d475db1da09bc1ccfc06e0be5732.tar.gz |
* gcc_build: Add -o option for setting the objdir to use.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37397 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib/gcc_build')
-rwxr-xr-x | contrib/gcc_build | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/gcc_build b/contrib/gcc_build index 2989628255c..f20366e9600 100755 --- a/contrib/gcc_build +++ b/contrib/gcc_build @@ -62,6 +62,7 @@ cat <<EOF gcc_build [-c configure_options] [-d destination_directory] [-m make_boot_options] + [-o objdir] [-u username] [-p protocol] [-t tarfile] @@ -250,11 +251,12 @@ UPDATE=0 ######################################################################## # Parse the options. -while getopts "c:d:m:p:t:u:" ARG; do +while getopts "c:d:m:o:p:t:u:" ARG; do case $ARG in c) CONFIGURE_OPTIONS="${OPTARG}";; d) DESTINATION="${OPTARG}";; m) MAKE_BOOTSTRAP_OPTIONS="${OPTARG}";; + o) OBJDIR="${OPTARG}";; p) CVS_PROTOCOL="${OPTARG}";; t) CVS_TARGFILE="${OPTARG}";; u) CVS_USERNAME="${OPTARG}";; |