1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-06 19:59:18 +03:00

From: PortSite <info@portsite.nl>

The GNUmakefile in src/test/regress uses `gmake' for
the make program. This should be $(MAKE)
This commit is contained in:
Marc G. Fournier 1997-06-06 01:35:57 +00:00
parent c0cb05335a
commit 355d6a2767

View File

@ -7,7 +7,7 @@
# #
# #
# IDENTIFICATION # IDENTIFICATION
# $Header: /cvsroot/pgsql/src/test/regress/GNUmakefile,v 1.7 1997/04/27 02:56:03 scrappy Exp $ # $Header: /cvsroot/pgsql/src/test/regress/GNUmakefile,v 1.8 1997/06/06 01:35:57 scrappy Exp $
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
@ -41,8 +41,8 @@ endif
# prepare to run the test (including clean-up after the last run) # prepare to run the test (including clean-up after the last run)
# #
all: $(INFILES) all: $(INFILES)
cd input; gmake all; cd .. cd input; $(MAKE) all; cd ..
cd output; gmake all; cd .. cd output; $(MAKE) all; cd ..
# #
# run the test # run the test