1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-11 10:01:57 +03:00

Build bzip2 tarball in dist target as well

This commit is contained in:
Peter Eisentraut
2009-11-03 21:28:10 +00:00
parent 16cd34a435
commit a4d03bbcda
2 changed files with 9 additions and 7 deletions

View File

@ -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