diff options
author | marino <marino@FreeBSD.org> | 2014-02-10 07:29:16 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2014-02-10 07:29:16 +0800 |
commit | 66560797fd2c92550e0eacd70d3df7e8ca192060 (patch) | |
tree | c45eca4ed4b075be78b154085f3403fa25cf0474 /net-p2p/litecoin | |
parent | c0ba0fe6906eb6e6f7e67fe127496e2c07c63455 (diff) | |
download | freebsd-ports-gnome-66560797fd2c92550e0eacd70d3df7e8ca192060.tar.gz freebsd-ports-gnome-66560797fd2c92550e0eacd70d3df7e8ca192060.tar.zst freebsd-ports-gnome-66560797fd2c92550e0eacd70d3df7e8ca192060.zip |
net-p2p/litecoin: Fix DragonFly (broken by OSVERSION)
Limit OSVERSION-based modifications to FreeBSD. This port suddenly
broken and the use of OSVERSION without OPSYS was the cause.
Diffstat (limited to 'net-p2p/litecoin')
-rw-r--r-- | net-p2p/litecoin/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net-p2p/litecoin/Makefile b/net-p2p/litecoin/Makefile index 632b99ef3376..f0549d53f139 100644 --- a/net-p2p/litecoin/Makefile +++ b/net-p2p/litecoin/Makefile @@ -75,7 +75,7 @@ QMAKE_USE_DBUS= 0 PLIST_FILES+= share/applications/litecoin-qt.desktop share/pixmaps/litecoin64.png .endif -.if ${OSVERSION} >= 1000054 +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000054 EXTRA_PATCHES+= ${FILESDIR}/extra-patch-endian .endif |