- Disable threaded sort by default

- Fix typo in the NLS support
This commit is contained in:
Gabor Kovesdan 2012-06-27 05:50:15 +00:00
parent df5ea0d85b
commit d826ccd66d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=237628

View File

@ -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 <bsd.prog.mk>