diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-04-17 12:09:11 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-04-17 12:09:11 -0400 |
commit | 94f26cec62be7f0d766f80f7376ea5e0040948ae (patch) | |
tree | 9e94e128f8a0aa0c0bd90f175b9e0a4096a43bd2 /config/flags.mk | |
parent | adf0ab47c2d18d807bb21345b92be9cc5525d539 (diff) | |
download | bfs-94f26cec62be7f0d766f80f7376ea5e0040948ae.tar.xz |
build: Dont include ${BUILDDIR} in short messages
Diffstat (limited to 'config/flags.mk')
-rw-r--r-- | config/flags.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/flags.mk b/config/flags.mk index 2c91691..c9d7913 100644 --- a/config/flags.mk +++ b/config/flags.mk @@ -104,7 +104,7 @@ SETVAR = printf '%s := %s\n' >>$@ APPEND = append() { test -z "$$2" || printf '%s += %s\n' "$$1" "$$2" >>$@; }; append ${GEN}/flags.mk:: - ${MSG} "[ GEN] $@" + ${MSG} "[ GEN] ${TGT}" printf '# %s\n' "$@" >$@ ${SETVAR} CPPFLAGS "$$BFS_CPPFLAGS" ${APPEND} CPPFLAGS "$$TSAN_CPPFLAGS" |