diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2015-07-04 00:54:08 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2015-07-04 00:54:08 +0800 |
commit | 52e1d8c453dcc166b92f76894b32d7acc14332c5 (patch) | |
tree | 051257913c623da2dd294320d6fa8933ab33816b /Mk/Uses | |
parent | e168288840e7557288f2fa0ab3c26dd2ce861503 (diff) | |
download | freebsd-ports-gnome-52e1d8c453dcc166b92f76894b32d7acc14332c5.tar.gz freebsd-ports-gnome-52e1d8c453dcc166b92f76894b32d7acc14332c5.tar.zst freebsd-ports-gnome-52e1d8c453dcc166b92f76894b32d7acc14332c5.zip |
- Instead of limiting effect of alias.mk to DragonFly, extend it to everything which is not FreeBSD
Submitted by: amdmi3
Approved by: marino (maintainer)
Differential Revision: D2984
Diffstat (limited to 'Mk/Uses')
-rw-r--r-- | Mk/Uses/alias.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/Uses/alias.mk b/Mk/Uses/alias.mk index 16104549d15b..e581ad8557f4 100644 --- a/Mk/Uses/alias.mk +++ b/Mk/Uses/alias.mk @@ -13,7 +13,7 @@ .if !defined(_INCLUDE_USES_ALIAS_MK) _INCLUDE_USES_ALIAS_MK= yes -.if ${OPSYS} == DragonFly +.if ${OPSYS} != FreeBSD .if empty(alias_ARGS) CFLAGS+= -D__FreeBSD__=9 @@ -26,6 +26,6 @@ IGNORE= invalid MAJOR RELEASE argument (${alias_ARGS}) for USES=alias . endif .endif -.endif # OPSYS == DragonFly +.endif # OPSYS != FreeBSD .endif |