gcc_release: Command "all" now creates .gz files only for releases and pre-releases.
* gcc_release: Command "all" now creates .gz files only for releases and pre-releases. From-SVN: r68620
This commit is contained in:
parent
1c49935743
commit
711f0333a2
2 changed files with 11 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2003-06-28 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
|
||||
|
||||
* gcc_release: Command "all" now creates .gz files only for
|
||||
releases and pre-releases.
|
||||
|
||||
2003-06-27 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
|
||||
|
||||
* gcc_release (build_sources): Do not include gnats.html any longer.
|
||||
|
|
|
@ -611,7 +611,12 @@ while [ $# -ne 0 ]; do
|
|||
sources) MODE_SOURCES=1;;
|
||||
tarfiles) MODE_TARFILES=1;;
|
||||
upload) MODE_UPLOAD=1;;
|
||||
all) MODE_SOURCES=1; MODE_TARFILES=1; MODE_DIFFS=1; MODE_GZIP=1; MODE_UPLOAD=1;;
|
||||
all) MODE_SOURCES=1; MODE_TARFILES=1; MODE_DIFFS=1; MODE_UPLOAD=1;
|
||||
if [ $SNAPSHOT -ne 1 ]; then
|
||||
# Only for releases and pre-releases.
|
||||
MODE_GZIP=1;
|
||||
fi
|
||||
;;
|
||||
*) error "Unknown mode $1";;
|
||||
esac
|
||||
shift
|
||||
|
|
Loading…
Add table
Reference in a new issue