summaryrefslogtreecommitdiffstats
path: root/build/deps.mk
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-05-24 14:06:29 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-05-24 14:23:50 -0400
commit82bfda9af2e4a720ff485302307b2b50584efb8e (patch)
tree78726cfc2c28499541fd8896efe97ecc0f7a4336 /build/deps.mk
parent3a6c1f049bb3643c86eb87f6c69cf7c3d3c95c86 (diff)
downloadbfs-82bfda9af2e4a720ff485302307b2b50584efb8e.tar.xz
build/deps: Fix _CPPFLAGS variable name
Diffstat (limited to 'build/deps.mk')
-rw-r--r--build/deps.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/deps.mk b/build/deps.mk
index 3db62b6..d382f5d 100644
--- a/build/deps.mk
+++ b/build/deps.mk
@@ -12,7 +12,7 @@ gen/deps.mk::
${MSG} "[ GEN] $@"
@printf '# %s\n' "$@" >$@
@if build/cc.sh -MD -MP -MF /dev/null build/empty.c; then \
- printf 'CPPFLAGS += -MD -MP\n'; \
+ printf '_CPPFLAGS += -MD -MP\n'; \
fi >>$@ 2>$@.log
${VCAT} $@
@printf -- '-include %s\n' ${OBJS:.o=.d} >>$@