From d826ccd66d20ebec714f745cafd5e75e10957de9 Mon Sep 17 00:00:00 2001 From: Gabor Kovesdan Date: Wed, 27 Jun 2012 05:50:15 +0000 Subject: [PATCH] - Disable threaded sort by default - Fix typo in the NLS support --- usr.bin/sort/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/sort/Makefile b/usr.bin/sort/Makefile index 162df21cd5e1..14e69e536bef 100644 --- a/usr.bin/sort/Makefile +++ b/usr.bin/sort/Makefile @@ -21,7 +21,7 @@ sort.1: sort.1.in CLEANFILES+= sort.1 -.if !defined(WITHOUT_THREADS) +.if defined(WITH_THREADS) CFLAGS+= -DSORT_THREADS LDFLAGS+= -lpthread -lmd MAN_SUB+= -e 's|%%THREADS%%||g' @@ -39,7 +39,7 @@ NLSSRCDIR_${lang}= ${.CURDIR}/nls .endfor .else CFLAGS+= -DWITHOUT_NLS -MAN_SUB+= -e 's|%%THREADS%%|\.\\"|g' +MAN_SUB+= -e 's|%%NLS%%|\.\\"|g' .endif .include