diff options
author | gabor <gabor@FreeBSD.org> | 2012-06-27 05:59:01 +0000 |
---|---|---|
committer | gabor <gabor@FreeBSD.org> | 2012-06-27 05:59:01 +0000 |
commit | c7fbb6736286e1c4a125bed52f0daa2b669bf538 (patch) | |
tree | f66ade24c26b739d867a9f97887b5312976df3c4 /gnu | |
parent | dd4780f8e21ad585d7fc04194b115a6417d803d6 (diff) | |
download | FreeBSD-src-c7fbb6736286e1c4a125bed52f0daa2b669bf538.zip FreeBSD-src-c7fbb6736286e1c4a125bed52f0daa2b669bf538.tar.gz |
- Switch to BSD sort as default sort. GNU sort will still be installed as
"gnusort". Most of the BSD sort development work was done by
Oleg Moskalenko <oleg.moskalenko@citrix.com>.
- GNU grep can be set to default by setting WITH_GNU_GREP. It will cause
BSD sort to be installed as "bsdsort".
Portbuild tested by: linimon
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/sort/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/sort/Makefile b/gnu/usr.bin/sort/Makefile index a116a63..bf193bc 100644 --- a/gnu/usr.bin/sort/Makefile +++ b/gnu/usr.bin/sort/Makefile @@ -5,7 +5,7 @@ SORTDIR= ${.CURDIR}/../../../contrib/gnu-sort .include <bsd.own.mk> -.if ${MK_BSD_SORT} != "yes" +.if ${MK_GNU_SORT} == "yes" PROG= sort .else PROG= gnusort |