From feb9ba2993cf6aefa49b7b17ca49c52210c26035 Mon Sep 17 00:00:00 2001 From: Christos Margiolis Date: Sat, 19 Oct 2024 16:34:20 +0200 Subject: [PATCH] mididump(1): Use LIBADD instead of LDFLAGS Reported by: kevans Sponsored by: The FreeBSD Foundation MFC after: 1 week Reviewed by: markj, emaste Differential Revision: https://reviews.freebsd.org/D47190 --- usr.bin/mididump/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/mididump/Makefile b/usr.bin/mididump/Makefile index f3b273172b1..758bbb3a118 100644 --- a/usr.bin/mididump/Makefile +++ b/usr.bin/mididump/Makefile @@ -3,6 +3,6 @@ PROG= mididump SRCS= ${PROG}.c MAN= ${PROG}.1 -LDFLAGS+= -lm +LIBADD+= m .include