diff options
author | Marc G. Fournier <scrappy@hub.org> | 1997-06-06 01:35:57 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1997-06-06 01:35:57 +0000 |
commit | 355d6a276714670a633fa23b8ba1eec78967a35b (patch) | |
tree | 3b4a133120e3f52f5a9d45eee4a2a01149990a20 /src | |
parent | c0cb05335aa6a535b90d7593798efafcd074d0e3 (diff) | |
download | postgresql-355d6a276714670a633fa23b8ba1eec78967a35b.tar.gz postgresql-355d6a276714670a633fa23b8ba1eec78967a35b.zip |
From: PortSite <info@portsite.nl>
The GNUmakefile in src/test/regress uses `gmake' for
the make program. This should be $(MAKE)
Diffstat (limited to 'src')
-rw-r--r-- | src/test/regress/GNUmakefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/regress/GNUmakefile b/src/test/regress/GNUmakefile index b1f5045b844..9f26ab11b14 100644 --- a/src/test/regress/GNUmakefile +++ b/src/test/regress/GNUmakefile @@ -7,7 +7,7 @@ # # # 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) # all: $(INFILES) - cd input; gmake all; cd .. - cd output; gmake all; cd .. + cd input; $(MAKE) all; cd .. + cd output; $(MAKE) all; cd .. # # run the test |