diff options
author | tron <tron@pkgsrc.org> | 2006-01-07 23:31:46 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2006-01-07 23:31:46 +0000 |
commit | 4209cc022f1bc02c92e34fae6121ed0db702c2e0 (patch) | |
tree | 0660d448c27f5fe5c7397acb5af5a5a63597bb7a | |
parent | 4d0e36273890f2a8ccb2064273ab6a47fe08e874 (diff) | |
download | pkgsrc-4209cc022f1bc02c92e34fae6121ed0db702c2e0.tar.gz |
Use GNU make under Darwin to fix a build problem.
-rw-r--r-- | mail/faces/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mail/faces/Makefile b/mail/faces/Makefile index f21333f0340..4e8fc3b9ec1 100644 --- a/mail/faces/Makefile +++ b/mail/faces/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.46 2005/12/05 20:50:31 rillig Exp $ +# $NetBSD: Makefile,v 1.47 2006/01/07 23:31:46 tron Exp $ DISTNAME= faces-1.6.1 PKGREVISION= 3 @@ -33,6 +33,8 @@ MAKE_ENV+= SVR4LIBS="-lnsl -lsocket -lgen" MAKE_ENV+= SYSV=-DSYSV32 MAKE_ENV+= CC=gcc MAKE_ENV+= CPPFLAGS= +.elif ${OPSYS} == "Darwin" +USE_TOOLS+= gmake .endif .if ${OPSYS} != "Interix" |