diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2013-04-02 22:01:27 +0800 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2013-04-02 22:01:27 +0800 |
commit | 0e67efc529bf87395f990fa90bd19fb1531078a7 (patch) | |
tree | 800fc7ca0ab0cb4e903963353a4ad64c97d8b00d /Mk | |
parent | c5b490e1df1eb4df1fa1ec693e8dc3140ec3f06f (diff) | |
download | freebsd-ports-gnome-0e67efc529bf87395f990fa90bd19fb1531078a7.tar.gz freebsd-ports-gnome-0e67efc529bf87395f990fa90bd19fb1531078a7.tar.zst freebsd-ports-gnome-0e67efc529bf87395f990fa90bd19fb1531078a7.zip |
- Add a workaround for leaky environment's make index (this unbreaks all gecko@ for FreeBSD-8 on pointyhat)
Reported by: pointyhat
Tested with: pointyhat/poudriere
oked by: flo (gecko@)
Submitted by: antoine (thx!)
Approved by: portmgr
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.gecko.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mk/bsd.gecko.mk b/Mk/bsd.gecko.mk index b54be8561ffe..b7380380d03b 100644 --- a/Mk/bsd.gecko.mk +++ b/Mk/bsd.gecko.mk @@ -553,15 +553,15 @@ LDFLAGS+= -Wl,-rpath,${PREFIX}/lib/${MOZ_RPATH} .if ${MOZILLA_VER:R:R} >= 19 || ${MOZILLA:Mseamonkey*} # prefer clang -. if ${CC} == "cc" && (exists(/usr/bin/clang) || \ +. if ${CC} == "cc" && (exists(/usr/bin/clang) && ${OSVERSION} >= 900014 || \ exists(${LOCALBASE}/bin/clang)) CC= clang . endif -. if ${CXX} == "c++" && (exists(/usr/bin/clang++) || \ +. if ${CXX} == "c++" && (exists(/usr/bin/clang++) && ${OSVERSION} >= 900014 || \ exists(${LOCALBASE}/bin/clang++)) CXX= clang++ . endif -. if ${CPP} == "cpp" && (exists(/usr/bin/clang-cpp) || \ +. if ${CPP} == "cpp" && (exists(/usr/bin/clang-cpp) && ${OSVERSION} >= 900014 || \ exists(${LOCALBASE}/bin/clang-cpp)) CPP= clang-cpp . endif |