diff options
author | marino <marino@FreeBSD.org> | 2014-05-05 23:04:38 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2014-05-05 23:04:38 +0800 |
commit | ac7f1aa09e9131eee2edd4b40950411af55ff0e9 (patch) | |
tree | 2ef30bca51b8a6ad09166d049133c83a04181b1b /science | |
parent | 0c026af6d7ef58a6e6ce4993af5c5ba8558102d7 (diff) | |
download | freebsd-ports-gnome-ac7f1aa09e9131eee2edd4b40950411af55ff0e9.tar.gz freebsd-ports-gnome-ac7f1aa09e9131eee2edd4b40950411af55ff0e9.tar.zst freebsd-ports-gnome-ac7f1aa09e9131eee2edd4b40950411af55ff0e9.zip |
Replace "${OPSYS:tl}" with "freebsd" on 4 ports
The following 4 ports will not build correctly if certain variables
are not defined as "freebsd". Defining them as "${OPSYS:tl}" caused
breakage on DragonFly for various reasons. Harding the variables are
a no-op for FreeBSD but fixes the ports on DragonFly.
* games/ioquake3
* graphics/opendx
* science/cdf
* security/john
approved by: portmgr (bapt)
Diffstat (limited to 'science')
-rw-r--r-- | science/cdf/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/science/cdf/Makefile b/science/cdf/Makefile index 55e70359b6c4..38618629fa3f 100644 --- a/science/cdf/Makefile +++ b/science/cdf/Makefile @@ -14,7 +14,7 @@ DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} MAINTAINER= stephen@FreeBSD.org COMMENT= Device independent view of the CDF data model -MAKE_FLAGS= INSTALLDIR=${STAGEDIR}${PREFIX} OS=${OPSYS:tl} ENV=gnu \ +MAKE_FLAGS= INSTALLDIR=${STAGEDIR}${PREFIX} OS=freebsd ENV=gnu \ FORTRAN=yes FC_freebsd=${F77} USE_LDCONFIG= yes MAKE_JOBS_UNSAFE= yes |