From a817fa8e80ec507aaaf17e53ec3d6334cbb06647 Mon Sep 17 00:00:00 2001 From: miod Date: Thu, 2 Jan 2014 17:05:02 +0000 Subject: [PATCH] LDFLAGS -> LDADD, fixes build on static arches. --- usr.bin/mandoc/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/mandoc/Makefile b/usr.bin/mandoc/Makefile index 6f5463699d9..2e2c62e8057 100644 --- a/usr.bin/mandoc/Makefile +++ b/usr.bin/mandoc/Makefile @@ -1,10 +1,10 @@ -# $OpenBSD: Makefile,v 1.72 2013/12/31 00:40:19 schwarze Exp $ +# $OpenBSD: Makefile,v 1.73 2014/01/02 17:05:02 miod Exp $ .include CFLAGS += -DVERSION=\"1.13.0\" CFLAGS += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -LDFLAGS += -lsqlite3 +LDADD += -lsqlite3 SRCS= roff.c tbl.c tbl_opts.c tbl_layout.c tbl_data.c eqn.c mandoc.c read.c SRCS+= mdoc_macro.c mdoc.c mdoc_hash.c \ -- 2.20.1