diff options
author | Warner Losh <imp@FreeBSD.org> | 2014-04-05 18:01:49 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2014-04-05 18:01:49 +0000 |
commit | cf57243a460620a51aef50fbe0110f137d34dc2d (patch) | |
tree | 9a596589ddfc375951b2a26a865df1f203a0de30 /usr.bin/sort | |
parent | 26ff68c00ca7bc0577d3637257f53aace59ed514 (diff) | |
download | src-cf57243a460620a51aef50fbe0110f137d34dc2d.tar.gz src-cf57243a460620a51aef50fbe0110f137d34dc2d.zip |
Notes
Diffstat (limited to 'usr.bin/sort')
-rw-r--r-- | usr.bin/sort/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/sort/Makefile b/usr.bin/sort/Makefile index ea68c4503e63..3b257c2236a7 100644 --- a/usr.bin/sort/Makefile +++ b/usr.bin/sort/Makefile @@ -11,7 +11,7 @@ sort.1: sort.1.in CLEANFILES+= sort.1 -.if defined(WITH_THREADS) +.if ${MK_SORT_THREADS} != "no" CFLAGS+= -DSORT_THREADS LDFLAGS+= -lpthread -lmd MAN_SUB+= -e 's|%%THREADS%%||g' @@ -20,7 +20,7 @@ LDFLAGS+= -lmd MAN_SUB+= -e 's|%%THREADS%%|\.\\"|g' .endif -.if !defined(WITHOUT_NLS) +.if ${MK_NLS} != "no" NLS+= hu_HU.ISO8859-2 NLSSRCFILES= ${NLS:S@$@.msg@} MAN_SUB+= -e 's|%%NLS%%||g' |