diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2009-11-03 21:28:10 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2009-11-03 21:28:10 +0000 |
commit | a4d03bbcdaf7739d7e9073ee76bb186f68ddc163 (patch) | |
tree | 9223ce9743f81eb9fb0178a0cacd8743518ef9fe /src | |
parent | 16cd34a4352cc61d52b0aa99a8ece0926d236b03 (diff) | |
download | postgresql-a4d03bbcdaf7739d7e9073ee76bb186f68ddc163.tar.gz postgresql-a4d03bbcdaf7739d7e9073ee76bb186f68ddc163.zip |
Build bzip2 tarball in dist target as well
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.global.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile.global.in b/src/Makefile.global.in index c781e22f48f..37441a8003a 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -1,5 +1,5 @@ # -*-makefile-*- -# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.258 2009/08/26 22:24:42 petere Exp $ +# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.259 2009/11/03 21:28:10 petere Exp $ #------------------------------------------------------------------------------ # All PostgreSQL makefiles include this file and use the variables it sets, @@ -475,10 +475,10 @@ TAS = @TAS@ $(CPP) $(CPPFLAGS) -o $@ $< %.gz: % - $(GZIP) -f --best $< + $(GZIP) --best -c $< >$@ %.bz2: % - $(BZIP2) -f $< + $(BZIP2) -c $< >$@ ifndef PGXS |