Commit 1f9d6808 authored by gerald's avatar gerald
Browse files

* gcc_release (build_diff): Properly use ${TAR} instead of

	hard-coded tar.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67699 138bc75d-0d04-0410-961f-82ee72b054a4
parent 3c5d9204
2003-06-10 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* gcc_release (build_diff): Properly use ${TAR} instead of
hard-coded tar.
2003-05-28 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* snapshot-index.html: Refer to .bz2 files instead of .gz files.
......
......@@ -323,8 +323,8 @@ build_diff() {
tmpdir=gccdiff.$$
mkdir $tmpdir || error "Could not create directory $tmpdir"
changedir $tmpdir
tar xfz $1 || error "Could not unpack $1 for diffs"
tar xfz $3 || error "Could not unpack $3 for diffs"
${TAR} xfz $1 || error "Could not unpack $1 for diffs"
${TAR} xfz $3 || error "Could not unpack $3 for diffs"
${DIFF} $2 $4 > ../${5%.gz}
if [ $? -eq 2 ]; then
error "Trouble making diffs from $1 to $3"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment