diff options
| author | Phil Sutter <phil@nwl.cc> | 2025-09-09 00:14:16 +0200 |
|---|---|---|
| committer | Phil Sutter <phil@nwl.cc> | 2025-09-09 12:18:03 +0200 |
| commit | 229fa8b440b67debb12beca830e57a9ea25a2745 (patch) | |
| tree | b7f80dda63d9dfaf08d3efdd06aa6d2c29402033 /Makefile.am | |
| parent | 083c532a2e179ec350881ff5444f35c58b99937f (diff) | |
Makefile: Fix for 'make CFLAGS=...'
Appending to CFLAGS from configure.ac like this was too naive, passing
custom CFLAGS in make arguments overwrites it. Extend AM_CFLAGS instead.
Fixes: 64c07e38f0494 ("table: Embed creating nft version into userdata")
Signed-off-by: Phil Sutter <phil@nwl.cc>
Acked-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'Makefile.am')
| -rw-r--r-- | Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 5190a49a..3e3f1e61 100644 --- a/Makefile.am +++ b/Makefile.am @@ -156,6 +156,8 @@ AM_CFLAGS = \ \ $(GCC_FVISIBILITY_HIDDEN) \ \ + -DMAKE_STAMP=$(MAKE_STAMP) \ + \ $(NULL) AM_YFLAGS = -d -Wno-yacc |
