summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2011-07-03 16:40:34 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2011-07-03 16:40:34 -0400
commit8de6e9472ff8bfdcecba8970771e51edb7564c70 (patch)
treea724323a38a13264835376aa2f9b7267f9a6d149 /src
parentca43ce9ebaa0f3af4da206ddc51f8c86de160297 (diff)
Back-patch creation of tar.bz2 tarball during "make dist".
Since commit a4d03bbcdaf7739d7e9073ee76bb186f68ddc163, "make dist" has built both gzip- and bzip2-compressed tarballs. However, this was pretty useless, because our tarball build script didn't know about it and proceeded to overwrite the bz2 file with new data. Back-patch the change to all active branches, so that creation of the tar.bz2 file can be removed from the build script.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.global.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.global.in b/src/Makefile.global.in
index aa41ee9f9b6..5e9f0af2975 100644
--- a/src/Makefile.global.in
+++ b/src/Makefile.global.in
@@ -449,10 +449,10 @@ TAS = @TAS@
# Global targets and rules
%.gz: %
- $(GZIP) -f --best $<
+ $(GZIP) --best -c $< >$@
%.bz2: %
- $(BZIP2) -f $<
+ $(BZIP2) -c $< >$@
ifeq ($(PORTNAME),win32)
# Build rules to add versioninfo resources to win32 binaries