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 /graphics/opendx | |
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 'graphics/opendx')
-rw-r--r-- | graphics/opendx/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/opendx/Makefile b/graphics/opendx/Makefile index 12d91624e9a3..b613c56bc878 100644 --- a/graphics/opendx/Makefile +++ b/graphics/opendx/Makefile @@ -22,11 +22,11 @@ USE_GL= yes USE_AUTOTOOLS= libtool USE_LDCONFIG= yes CFLAGS+= ${PTHREAD_CFLAGS} -CONFIGURE_ENV= ARCH="${OPSYS:tl}" +CONFIGURE_ENV= ARCH=freebsd CPPFLAGS+= ${CXXFLAGS} -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib NO_MTREE= yes -PLIST_SUB= ARCH=${OPSYS:tl} +PLIST_SUB= ARCH=freebsd PKGMESSAGE= ${WRKDIR}/pkg-message .if defined(WITH_HDF) && !defined(WITHOUT_NETCDF) |