diff options
author | reed <reed@pkgsrc.org> | 2006-02-24 19:47:02 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2006-02-24 19:47:02 +0000 |
commit | afbc5ec7c4c1fa3c062aeb4ff1c799de26d4f3ff (patch) | |
tree | 8dc0af15507ec5c55d0334286b0d1118b37d395a /cad | |
parent | 9e5700da2b3b08b37a000061e5da08fafce516a3 (diff) | |
download | pkgsrc-afbc5ec7c4c1fa3c062aeb4ff1c799de26d4f3ff.tar.gz |
Also allow Darwin to be a valid operating system -- by using "BSD".
This is from John D. Baker via PR 32924. I didn't test this myself.
Diffstat (limited to 'cad')
-rw-r--r-- | cad/qcad/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cad/qcad/Makefile b/cad/qcad/Makefile index 3f1d908c35e..9d3353432fd 100644 --- a/cad/qcad/Makefile +++ b/cad/qcad/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.34 2006/02/05 23:08:22 joerg Exp $ +# $NetBSD: Makefile,v 1.35 2006/02/24 19:47:02 reed Exp $ DISTNAME= qcad-1.5.4-src PKGNAME= qcad-1.5.4 @@ -21,7 +21,7 @@ INSTALLATION_DIRS= bin QCAD_OPSYS = LINUX .elif ${OPSYS} == "SunOS" QCAD_OPSYS = SOLARIS -.elif !empty(OPSYS:M*BSD) || ${OPSYS} == "DragonFly" +.elif !empty(OPSYS:M*BSD) || ${OPSYS} == "DragonFly" || ${OPSYS} == "Darwin" QCAD_OPSYS = BSD .elif !empty(OPSYS:MIRIX) QCAD_OPSYS = IRIX |