From 1e64fc1f94c37a38829a22167cd6a3c8a32f4ba3 Mon Sep 17 00:00:00 2001 From: Greg Stein Date: Mon, 23 Oct 2000 15:48:00 +0000 Subject: [PATCH] use a cleaner form for building the TAR file Submitted by: Joe Orton Reviewed by: Greg Stein git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86713 13f79535-47bb-0310-9956-ffa450edef68 --- build/binbuild.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/binbuild.sh b/build/binbuild.sh index 1e2f454ff0..53aa80ff1a 100755 --- a/build/binbuild.sh +++ b/build/binbuild.sh @@ -273,7 +273,7 @@ else then case "x$OS" in x*390*) $TAR -cfU ../apache_$VER-$OS.tar -C .. apache_$VER;; - *) $TAR -cf ../apache_$VER-$OS.tar -C .. apache_$VER;; + *) (cd .. && $TAR -cf apache_$VER-$OS.tar apache_$VER);; esac if [ "x$GZIP" != "x" ] then -- 2.50.1