diff options
author | joerg <joerg@pkgsrc.org> | 2019-12-21 23:48:26 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2019-12-21 23:48:26 +0000 |
commit | 66b93fe2eb655fe539724b2a34ec36b60de942f2 (patch) | |
tree | c3f11fe0e3b7544d698ba87e18ec0342db79d075 /wm | |
parent | a3ddf203221b64f9a0dacf3519f85e9f634f2d4a (diff) | |
download | pkgsrc-66b93fe2eb655fe539724b2a34ec36b60de942f2.tar.gz |
Ignore deprecation with clang.
Diffstat (limited to 'wm')
-rw-r--r-- | wm/fluxconf/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wm/fluxconf/Makefile b/wm/fluxconf/Makefile index b6d652e8e38..d5e8191e9e6 100644 --- a/wm/fluxconf/Makefile +++ b/wm/fluxconf/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.38 2019/07/21 22:25:51 wiz Exp $ +# $NetBSD: Makefile,v 1.39 2019/12/21 23:48:26 joerg Exp $ # DISTNAME= fluxconf-0.9.9 @@ -19,8 +19,8 @@ USE_TOOLS+= msgfmt pkg-config .include "../../mk/compiler.mk" .if !empty(PKGSRC_COMPILER:Mclang) -_WRAP_EXTRA_ARGS.CC+= -Wno-error=invalid-source-encoding -Wno-error=format-security -Wno-error=self-assign -CWRAPPERS_APPEND.cc+= -Wno-error=invalid-source-encoding -Wno-error=format-security -Wno-error=self-assign +_WRAP_EXTRA_ARGS.CC+= -Wno-error=invalid-source-encoding -Wno-error=format-security -Wno-error=self-assign -Wno-error=deprecated-declarations +CWRAPPERS_APPEND.cc+= -Wno-error=invalid-source-encoding -Wno-error=format-security -Wno-error=self-assign -Wno-error=deprecated-declarations .elif !empty(PKGSRC_COMPILER:Mgcc) _WRAP_EXTRA_ARGS.CC+= -Wno-error=unused-but-set-parameter -Wno-error=unused-but-set-variable CWRAPPERS_APPEND.cc+= -Wno-error=unused-but-set-parameter -Wno-error=unused-but-set-variable |