diff options
author | thierry <thierry@FreeBSD.org> | 2007-06-29 02:54:51 +0800 |
---|---|---|
committer | thierry <thierry@FreeBSD.org> | 2007-06-29 02:54:51 +0800 |
commit | db5c68f53c97c1c0b42057d19689a82c0c66160e (patch) | |
tree | d17b0915b06664d61424abcef0223897b50cf917 /science/ncs | |
parent | be9ddbe718262f6d82cb9c38d19e4938560d4a9e (diff) | |
download | freebsd-ports-gnome-db5c68f53c97c1c0b42057d19689a82c0c66160e.tar.gz freebsd-ports-gnome-db5c68f53c97c1c0b42057d19689a82c0c66160e.tar.zst freebsd-ports-gnome-db5c68f53c97c1c0b42057d19689a82c0c66160e.zip |
Don't set TERM conditionally on pointyhat, to avoid it defaulting to
`su' which breaks the build.
Reported by: pointyhat via pav
Diffstat (limited to 'science/ncs')
-rw-r--r-- | science/ncs/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/science/ncs/Makefile b/science/ncs/Makefile index 1e3ac68c9aeb..77c6cc9a9063 100644 --- a/science/ncs/Makefile +++ b/science/ncs/Makefile @@ -35,7 +35,11 @@ FORTRANLIBDIR= `${DIRNAME} \\`gfortran42 -print-libgcc-file-name\\`` FORTRANLIBDIR2= `${DIRNAME} \\`gfortran42 -print-libgcc-file-name\\``/../../../ MAKE_ENV+= FC="${FC}" F77="${F77}" FFLAGS="${FFLAGS}" +.if defined(PACKAGE_BUILDING) +TERM= vt100 # Force for pointyhat to override su +.else TERM?= vt100 # Default value needed for tput in jail or tinderbox +.endif PATHCS= ${PREFIX}/Saturne CS_HOME= ${PATHCS}/Noyau/ncs |