Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit b97a227

Browse files
committed
Change order of install...installing interfaces is the last to be done, as, if not installing as root (which nobody *should* be doing, of course), the perl install fails, which means that both bin and man directories are not installed :( This way, only thing that doesn't get installed is perl interface...
1 parent 3700981 commit b97a227

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/GNUmakefile.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.27 1998/09/11 17:08:21 momjian Exp $
10+
# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.28 1998/09/14 04:17:40 scrappy Exp $
1111
#
1212
#-------------------------------------------------------------------------
1313

@@ -48,11 +48,11 @@ install:
4848
$(MAKE) -C lextest install
4949
$(MAKE) -C utils install
5050
$(MAKE) -C backend install
51-
$(MAKE) -C interfaces install
5251
$(MAKE) -C bin install
5352
ifneq ($(wildcard man), )
5453
$(MAKE) -C man install
5554
endif
55+
$(MAKE) -C interfaces install
5656
cat ../register.txt
5757

5858
clean:

0 commit comments

Comments
 (0)