diff options
author | Marc G. Fournier <scrappy@hub.org> | 1999-06-05 04:15:09 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1999-06-05 04:15:09 +0000 |
commit | dbaab4a4d42f09148dcdb55f3a1912458f250f20 (patch) | |
tree | c9a433fc1e8ee279a21356b0a4794a1fcb3313a0 | |
parent | 840306af04740ccd483651b373a434c97db8f878 (diff) | |
download | postgresql-dbaab4a4d42f09148dcdb55f3a1912458f250f20.tar.gz postgresql-dbaab4a4d42f09148dcdb55f3a1912458f250f20.zip |
man.patch (make inconsistency)
the default target is 'install' instead of 'all'. So if you do a
make without target you actually do a make install, which is not
what one normally expects from a standard makefile.
From: Massimo Dal Zotto <dz@cs.unitn.it>
-rw-r--r-- | src/man/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/man/Makefile b/src/man/Makefile index eb925ee54b4..aa1598735eb 100644 --- a/src/man/Makefile +++ b/src/man/Makefile @@ -8,13 +8,15 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/man/Attic/Makefile,v 1.7 1998/04/06 16:53:05 momjian Exp $ +# $Header: /cvsroot/pgsql/src/man/Attic/Makefile,v 1.8 1999/06/05 04:15:09 scrappy Exp $ # #------------------------------------------------------------------------- SRCDIR=.. include ../Makefile.global +all: + install: -mkdir $(POSTMANDIR) -mkdir $(POSTMANDIR)/man1 @@ -28,6 +30,4 @@ install: clean: -all: - dep depend: |