aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/sort
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-11-25 14:29:10 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-11-25 14:29:10 +0000
commit3e11bd9e2a2b1cbd4283c87c93e3cc75e3f2dacb (patch)
treeddfef911600b923ca0abdbed4461a288b9249837 /usr.bin/sort
parent30fca3b0cc92ae380073c169d34b4cc3f27321e9 (diff)
Notes
Diffstat (limited to 'usr.bin/sort')
-rw-r--r--usr.bin/sort/Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/sort/Makefile b/usr.bin/sort/Makefile
index 532e9307caab..d097beb370a5 100644
--- a/usr.bin/sort/Makefile
+++ b/usr.bin/sort/Makefile
@@ -13,12 +13,10 @@ CLEANFILES+= sort.1
.if ${MK_SORT_THREADS} != "no"
CFLAGS+= -DSORT_THREADS
-LDADD= -lpthread -lmd
-DPADD= ${LIBPTHREAD} ${LIBMD}
+LIBADD= pthread md
MAN_SUB+= -e 's|%%THREADS%%||g'
.else
-LDADD= -lmd
-DPADD= ${LIBMD}
+LIBADD= md
MAN_SUB+= -e 's|%%THREADS%%|\.\\"|g'
.endif