diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2007-02-09 15:56:00 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2007-02-09 15:56:00 +0000 |
commit | c138b966d42e69446b52a3e65a596f0401c41a33 (patch) | |
tree | 1542dc3cf0db17ec247d9c9309bdbac419c63720 /GNUmakefile.in | |
parent | d7fee591dbf26e4f0ca52b05cee4b34ea84b7cd6 (diff) | |
download | postgresql-c138b966d42e69446b52a3e65a596f0401c41a33.tar.gz postgresql-c138b966d42e69446b52a3e65a596f0401c41a33.zip |
Replace useless uses of := by = in makefiles.
Diffstat (limited to 'GNUmakefile.in')
-rw-r--r-- | GNUmakefile.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/GNUmakefile.in b/GNUmakefile.in index 16f9057efe1..f7bcc6729ca 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -1,7 +1,7 @@ # # PostgreSQL top level makefile # -# $PostgreSQL: pgsql/GNUmakefile.in,v 1.45 2006/08/18 19:58:05 adunstan Exp $ +# $PostgreSQL: pgsql/GNUmakefile.in,v 1.46 2007/02/09 15:55:57 petere Exp $ # subdir = @@ -63,9 +63,9 @@ GNUmakefile: GNUmakefile.in $(top_builddir)/config.status ########################################################################## -distdir := postgresql-$(VERSION) -dummy := =install= -garbage := =* "#"* ."#"* *~* *.orig *.rej core postgresql-* +distdir = postgresql-$(VERSION) +dummy = =install= +garbage = =* "#"* ."#"* *~* *.orig *.rej core postgresql-* dist: $(distdir).tar.gz ifeq ($(split-dist), yes) @@ -77,11 +77,11 @@ dist: $(distdir).tar: distdir $(TAR) chf $@ $(distdir) -opt_files := \ +opt_files = \ src/tools src/tutorial \ $(addprefix src/pl/, plperl plpython tcl) -docs_files := doc/postgres.tar.gz doc/src doc/TODO.detail +docs_files = doc/postgres.tar.gz doc/src doc/TODO.detail postgresql-base-$(VERSION).tar: distdir $(TAR) -c $(addprefix --exclude $(distdir)/, $(docs_files) $(opt_files) src/test) \ |