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:
parent
c5b490e1df
commit
0e67efc529
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=315676
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user