mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
- make check safer
This commit is contained in:
parent
645830e97f
commit
65aaf90ab1
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=289113
2 changed files with 2 additions and 2 deletions
|
@ -66,7 +66,7 @@ post-install:
|
|||
.endif
|
||||
|
||||
|
||||
.if defined(CC) && ${CC} == "clang"
|
||||
.if defined(CC) && ${CC:T:Mclang}
|
||||
# Optimizer crashes with
|
||||
# Assertion failed: (isPtrIV == IndVar->getType()->isPointerTy() && "IndVar type must match IVInit type")
|
||||
CFLAGS:= ${CFLAGS:S/-O2//g}
|
||||
|
|
|
@ -43,7 +43,7 @@ CPPFLAGS+= -DGNUSTEP
|
|||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} >= 900000
|
||||
.if defined(CC) && ${CC:Mclang}
|
||||
.if defined(CC) && ${CC:T:Mclang}
|
||||
# all done
|
||||
.else
|
||||
.if defined(GNUSTEP_WITH_CLANG)
|
||||
|
|
Loading…
Add table
Reference in a new issue