Skip to content

Commit ef0c80a

Browse files
committed
Ouch, that should be $(MAKE) -C', not make -C' ...
1 parent d42f9b5 commit ef0c80a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

GNUmakefile.in

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
# PostgreSQL top level makefile
33
#
4-
# $Header: /cvsroot/pgsql/GNUmakefile.in,v 1.1 2000/06/06 22:00:45 petere Exp $
4+
# $Header: /cvsroot/pgsql/GNUmakefile.in,v 1.2 2000/06/07 23:09:18 petere Exp $
55
#
66

77
srcdir = @srcdir@
@@ -12,18 +12,18 @@ top_builddir = .
1212

1313

1414
all:
15-
make -C src all
15+
$(MAKE) -C src all
1616
@echo "All of PostgreSQL successfully made. Ready to install."
1717

1818
install:
19-
make -C src install
19+
$(MAKE) -C src install
2020
@cat $(srcdir)/register.txt
2121

2222
clean:
23-
make -C src clean
23+
$(MAKE) -C src clean
2424

2525
distclean:
26-
make -C src distclean
26+
$(MAKE) -C src distclean
2727
-rm -f config.cache config.log config.status GNUmakefile
2828

2929

0 commit comments

Comments
 (0)