commit c9c433b4e6e2549c0615160e9d11f3d50aed4125 parent 694c4dd18eb755266cf1e18d3620ddc66ea5b063 Author: Roberto E. Vargas Caballero <k0ga@shike2.net> Date: Mon, 12 May 2025 22:55:11 +0200 build: Make build POSIX compatible Diffstat:
M | config.bsd | | | 4 | ++-- |
M | config.posix | | | 2 | +- |
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/config.bsd b/config.bsd @@ -7,8 +7,8 @@ PREFIX = /usr/local MANPREFIX = ${PREFIX}/share/man # flags -CPPFLAGS += -DVERSION=\"${VERSION}\" -D_XOPEN_SOURCE=600 -LDLIBS += -lutil +CPPFLAGS = -DVERSION=\"${VERSION}\" -D_XOPEN_SOURCE=600 +LDLIBS = -lutil # Objects diff --git a/config.posix b/config.posix @@ -7,7 +7,7 @@ PREFIX = /usr/local MANPREFIX = ${PREFIX}/share/man # flags -CPPFLAGS += -D_XOPEN_SOURCE=600 -DVERSION=\"${VERSION}\" +CPPFLAGS = -D_XOPEN_SOURCE=600 -DVERSION=\"${VERSION}\" # Objects