pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/lang/clang
Module Name: pkgsrc
Committed By: rillig
Date: Thu May 7 20:21:41 UTC 2020
Modified Files:
pkgsrc/lang/clang: Makefile Makefile.common
Log Message:
lang/clang: fix detection of libstdc++
In the previous commit, I had missed a negation in the empty(...)
condition.
PKGREVISION++ to notify clang users of the fix.
https://mail-index.netbsd.org/pkgsrc-users/2020/05/07/msg031132.html
To generate a diff of this commit:
cvs rdiff -u -r1.54 -r1.55 pkgsrc/lang/clang/Makefile
cvs rdiff -u -r1.43 -r1.44 pkgsrc/lang/clang/Makefile.common
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/lang/clang/Makefile
diff -u pkgsrc/lang/clang/Makefile:1.54 pkgsrc/lang/clang/Makefile:1.55
--- pkgsrc/lang/clang/Makefile:1.54 Sun Dec 29 15:31:22 2019
+++ pkgsrc/lang/clang/Makefile Thu May 7 20:21:41 2020
@@ -1,8 +1,9 @@
-# $NetBSD: Makefile,v 1.54 2019/12/29 15:31:22 adam Exp $
+# $NetBSD: Makefile,v 1.55 2020/05/07 20:21:41 rillig Exp $
.include "Makefile.common"
PKGNAME= ${DISTNAME:S/.src//}
+PKGREVISION= 1
CMAKE_ARGS+= -DCLANG_ENABLE_STATIC_ANALYZER=OFF
Index: pkgsrc/lang/clang/Makefile.common
diff -u pkgsrc/lang/clang/Makefile.common:1.43 pkgsrc/lang/clang/Makefile.common:1.44
--- pkgsrc/lang/clang/Makefile.common:1.43 Sun Apr 26 10:19:26 2020
+++ pkgsrc/lang/clang/Makefile.common Thu May 7 20:21:41 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.43 2020/04/26 10:19:26 rillig Exp $
+# $NetBSD: Makefile.common,v 1.44 2020/05/07 20:21:41 rillig Exp $
# used by lang/clang/Makefile
# used by lang/clang-static-analyzer/Makefile
# used by lang/clang-tools-extra/Makefile
@@ -84,7 +84,7 @@ LIBCPP_CHECK= NO
.endif
# patch NetBSD::GetCXXStdlibType
-.if ${OPSYS} == "NetBSD" && ${LIBCPP_CHECK} == YES
+.if ${OPSYS} == "NetBSD" && ${LIBCPP_CHECK} != YES
SUBST_CLASSES+= libcxx
SUBST_STAGE.libcxx= pre-configure
SUBST_MESSAGE.libcxx= Patching toolchain to use libstdc++ (matching the host compiler)
Home |
Main Index |
Thread Index |
Old Index