diff options
author | recht <recht> | 2004-03-07 11:32:44 +0000 |
---|---|---|
committer | recht <recht> | 2004-03-07 11:32:44 +0000 |
commit | ad65865c3d3fe432e00b2642b499b855b0449c04 (patch) | |
tree | 0151898890770d72731a9f5f7fdb9e7575bf3f28 /databases | |
parent | 8da34d79974351fb6eb125bacb3ec16300fc5a62 (diff) | |
download | pkgsrc-ad65865c3d3fe432e00b2642b499b855b0449c04.tar.gz |
Add a conflict on sysutils/coreutils if GNU_PROGRAM_PREFIX == "g".
Addresses PR 23941 by Chris Pinnock.
Diffstat (limited to 'databases')
-rw-r--r-- | databases/geneweb/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/databases/geneweb/Makefile b/databases/geneweb/Makefile index 29fad73e0bf..389126383d9 100644 --- a/databases/geneweb/Makefile +++ b/databases/geneweb/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2004/01/22 08:02:15 grant Exp $ +# $NetBSD: Makefile,v 1.16 2004/03/07 11:32:44 recht Exp $ # DISTNAME= geneweb-4.09 @@ -20,6 +20,14 @@ RCD_SCRIPTS= geneweb ALL_TARGET= out .endif +.include "../../mk/bsd.prefs.mk" + +# sysutils/coreutils a 'gwc' program, so conflict with it if +# ${GNU_PROGRAM_PREFIX} == "g" +.if ${GNU_PROGRAM_PREFIX} == "g" +CONFLICTS+= coreutils-[0-9]* +.endif + # Stripped OCAML binaries don't seem to work nolonger # Installing unstripped binaries until this is fixed INSTALL_PROGRAM = ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} |