diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2012-01-14 01:02:24 +0800 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2012-01-14 01:02:24 +0800 |
commit | 65aaf90ab151a2d36b9ba2ba3d101debfaa5c845 (patch) | |
tree | 3877aca9a94b71160cd82a69d9e7590347d755f6 | |
parent | 645830e97ff89d15cbf6302468ce457b748c749e (diff) | |
download | freebsd-ports-gnome-65aaf90ab151a2d36b9ba2ba3d101debfaa5c845.tar.gz freebsd-ports-gnome-65aaf90ab151a2d36b9ba2ba3d101debfaa5c845.tar.zst freebsd-ports-gnome-65aaf90ab151a2d36b9ba2ba3d101debfaa5c845.zip |
- make check safer
-rw-r--r-- | graphics/xv/Makefile | 2 | ||||
-rw-r--r-- | lang/libobjc2/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/graphics/xv/Makefile b/graphics/xv/Makefile index dcc646e89fd5..0df550fe7016 100644 --- a/graphics/xv/Makefile +++ b/graphics/xv/Makefile @@ -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} diff --git a/lang/libobjc2/Makefile b/lang/libobjc2/Makefile index e27a76e8989c..5f7455fd2588 100644 --- a/lang/libobjc2/Makefile +++ b/lang/libobjc2/Makefile @@ -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) |