diff options
author | Chuck Silvers <chs@FreeBSD.org> | 2025-03-19 19:50:08 +0000 |
---|---|---|
committer | Chuck Silvers <chs@FreeBSD.org> | 2025-03-19 19:50:08 +0000 |
commit | a335a52eedfd2225ffd8b11d123d04a9d68a0274 (patch) | |
tree | 40076c1fca683441cc0a166afe0c12b70e81e0ed | |
parent | db466e475446f232bdfde91c8773b0df8a653abd (diff) |
bsnmpd: append to LDFLAGS rather than replacing it
Sponsored by: Netflix
-rw-r--r-- | usr.sbin/bsnmpd/bsnmpd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/bsnmpd/bsnmpd/Makefile b/usr.sbin/bsnmpd/bsnmpd/Makefile index 245ffc51002f..e7c7a87eec7c 100644 --- a/usr.sbin/bsnmpd/bsnmpd/Makefile +++ b/usr.sbin/bsnmpd/bsnmpd/Makefile @@ -131,7 +131,7 @@ CFLAGS+= -I${CONTRIB}/lib -I${CONTRIB}/snmpd -I. -DUSE_LIBBEGEMOT CFLAGS+= -DHAVE_STDINT_H -DHAVE_INTTYPES_H -DHAVE_ERR_H -DHAVE_STRLCPY LIBADD= begemot bsnmp -LDFLAGS= -Wl,-export-dynamic +LDFLAGS+= -Wl,-export-dynamic .if ${MK_OPENSSL} != "no" CFLAGS+= -DHAVE_LIBCRYPTO |