Skip to content
Snippets Groups Projects
Commit 64e45b0e authored by Bryan Henderson's avatar Bryan Henderson
Browse files

Make sure user is running GNU make.

parent 56e8243d
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
# Copyright (c) 1994, Regents of the University of California # Copyright (c) 1994, Regents of the University of California
# #
# IDENTIFICATION # IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Makefile,v 1.13 1996/12/10 03:03:36 scrappy Exp $ # $Header: /cvsroot/pgsql/src/Makefile,v 1.14 1996/12/19 08:03:46 bryanh Exp $
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
...@@ -22,6 +22,12 @@ ETAGS = etags ...@@ -22,6 +22,12 @@ ETAGS = etags
XARGS = xargs XARGS = xargs
.DEFAULT all: .DEFAULT all:
@set - `$(MAKE) -v -f /dev/null 2>&1`.; \
if test $$1 != GNU; then \
echo "This Makefile requires GNU make."; \
echo "Please read the file INSTALL in this directory for details."; \
false ; \
fi
@if test $(PORTNAME) = UNDEFINED; then \ @if test $(PORTNAME) = UNDEFINED; then \
echo You must set the PORTNAME value in Makefile.global before \ echo You must set the PORTNAME value in Makefile.global before \
you can build Postgres. ;\ you can build Postgres. ;\
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment