diff options
author | marino <marino@FreeBSD.org> | 2015-11-04 02:52:39 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2015-11-04 02:52:39 +0800 |
commit | 426343e8e360541d16f8808956748efd2fb457b9 (patch) | |
tree | ded9f65d908d221e72d68d8849c518b7c8bd18de /devel/libdap | |
parent | 4eff4906ff497cb4c194abcf105e231280f93fb2 (diff) | |
download | freebsd-ports-gnome-426343e8e360541d16f8808956748efd2fb457b9.tar.gz freebsd-ports-gnome-426343e8e360541d16f8808956748efd2fb457b9.tar.zst freebsd-ports-gnome-426343e8e360541d16f8808956748efd2fb457b9.zip |
devel/libdap: Unbreak build on DragonFly after r400253
OSVERSION checks need to be validated by checking OPSYS, especially
with the ">" comparison. In this case, the extra patch got applied
to all releases of DragonFly unconditionally, breaking the build.
Approved by: blanket for OSVERSION usage
Diffstat (limited to 'devel/libdap')
-rw-r--r-- | devel/libdap/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/libdap/Makefile b/devel/libdap/Makefile index 5353de068481..19033a612c31 100644 --- a/devel/libdap/Makefile +++ b/devel/libdap/Makefile @@ -24,7 +24,7 @@ USES= bison charsetfix gmake libtool localbase pathfix .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 1100000 +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1100000 EXTRA_PATCHES+= ${FILESDIR}/extra-patch-dds.yy .endif |