summaryrefslogtreecommitdiff
path: root/pkg/vis/gen.lua
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2020-06-04 20:48:01 -0700
committerMichael Forney <mforney@mforney.org>2020-06-05 03:01:44 -0700
commitd4297a13c823b62d29d9850ab5815f6c78baf35a (patch)
tree153ebe760b69008ea6ff38d7066368d6f254b96b /pkg/vis/gen.lua
parentab438ea71e5b61956b9ad8c5b5f56e3a6c6b66c3 (diff)
Use -isystem to include library headers
This way, warnings from headers that come from another package (in particular linux-headers) won't show up when they get included. To make sure we still track dependencies, use -MD instead of -MMD.
Diffstat (limited to 'pkg/vis/gen.lua')
-rw-r--r--pkg/vis/gen.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/vis/gen.lua b/pkg/vis/gen.lua
index 0578302f..a87ac7a3 100644
--- a/pkg/vis/gen.lua
+++ b/pkg/vis/gen.lua
@@ -15,9 +15,9 @@ cflags{
string.format([[-D 'VIS_PATH="%s/share/vis"']], config.prefix),
'-D NDEBUG',
'-I $outdir',
- '-I $builddir/pkg/libtermkey/include',
- '-I $builddir/pkg/lua/include',
- '-I $builddir/pkg/ncurses/include',
+ '-isystem $builddir/pkg/libtermkey/include',
+ '-isystem $builddir/pkg/lua/include',
+ '-isystem $builddir/pkg/ncurses/include',
}
build('copy', '$outdir/config.h', '$srcdir/config.def.h')