diff options
author | Kevin Lo <kevlo@FreeBSD.org> | 2015-12-31 08:51:18 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@FreeBSD.org> | 2015-12-31 08:51:18 +0000 |
commit | 6af0b719de5d3338e15930a8266f9af7d0c40914 (patch) | |
tree | d79b3413dd1204efcc9881ef79dcc4a921a558b1 /net/hping-devel | |
parent | Update to 2.7.4 (diff) |
Check OPSYS. This unbreaks DragonFly after last commit.
Submitted by: marino
Notes
Notes:
svn path=/head/; revision=404915
Diffstat (limited to 'net/hping-devel')
-rw-r--r-- | net/hping-devel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/hping-devel/Makefile b/net/hping-devel/Makefile index c53e7804c51c..0c5410ecbec4 100644 --- a/net/hping-devel/Makefile +++ b/net/hping-devel/Makefile @@ -31,7 +31,7 @@ PORTEXAMPLES= README apd.htcl apd2.htcl ciscoios.htcl ciscoios0.htcl \ .include <bsd.port.pre.mk> -.if (${OSVERSION} >= 1100030) +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1100030 EXTRA_PATCHES= ${FILESDIR}/extra-patch-sendip.c .endif |