diff options
author | kim <kim@pkgsrc.org> | 1999-09-19 19:56:48 +0000 |
---|---|---|
committer | kim <kim@pkgsrc.org> | 1999-09-19 19:56:48 +0000 |
commit | 0dd669b887d1aae7c547255796f26b132a870773 (patch) | |
tree | a5ff97ff6085d933225f4e4c41dd3a462d3798dc /devel | |
parent | c67293d211e42e02c2d7c1b3c9183532dd0458c9 (diff) | |
download | pkgsrc-0dd669b887d1aae7c547255796f26b132a870773.tar.gz |
Unfortunately /usr/bin/patch is not what we want on Solaris.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/patch/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/devel/patch/Makefile b/devel/patch/Makefile index 0601ed3b5ca..b9ac3115ae3 100644 --- a/devel/patch/Makefile +++ b/devel/patch/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 1999/09/18 15:27:09 kim Exp $ +# $NetBSD: Makefile,v 1.2 1999/09/19 19:56:48 kim Exp $ # DISTNAME= patch-2.5.4 @@ -11,7 +11,9 @@ HOMEPAGE= http://www.gnu.org/software/patch/patch.html NO_PATCH= yes GNU_CONFIGURE= yes -.if exists(/usr/bin/patch) +.include "../../mk/bsd.prefs.mk" + +.if exists(/usr/bin/patch) && ${OPSYS} != "SunOS" IGNORE= "is part of your NetBSD distribution" .endif |