Skip to content

Commit dbaab4a

Browse files
committed
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>
1 parent 840306a commit dbaab4a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/man/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,15 @@
88
#
99
#
1010
# IDENTIFICATION
11-
# $Header: /cvsroot/pgsql/src/man/Attic/Makefile,v 1.7 1998/04/06 16:53:05 momjian Exp $
11+
# $Header: /cvsroot/pgsql/src/man/Attic/Makefile,v 1.8 1999/06/05 04:15:09 scrappy Exp $
1212
#
1313
#-------------------------------------------------------------------------
1414

1515
SRCDIR=..
1616
include ../Makefile.global
1717

18+
all:
19+
1820
install:
1921
-mkdir $(POSTMANDIR)
2022
-mkdir $(POSTMANDIR)/man1
@@ -28,6 +30,4 @@ install:
2830

2931
clean:
3032

31-
all:
32-
3333
dep depend:

0 commit comments

Comments
 (0)