1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-12 07:27:57 +00:00

- 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
This commit is contained in:
Martin Wilke 2013-04-02 14:01:27 +00:00
parent c5b490e1df
commit 0e67efc529
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=315676

View File

@ -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