diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-05-24 14:06:29 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-05-24 14:23:50 -0400 |
commit | 82bfda9af2e4a720ff485302307b2b50584efb8e (patch) | |
tree | 78726cfc2c28499541fd8896efe97ecc0f7a4336 /build | |
parent | 3a6c1f049bb3643c86eb87f6c69cf7c3d3c95c86 (diff) | |
download | bfs-82bfda9af2e4a720ff485302307b2b50584efb8e.tar.xz |
build/deps: Fix _CPPFLAGS variable name
Diffstat (limited to 'build')
-rw-r--r-- | build/deps.mk | 2 |
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} >>$@ |