diff options
author | jlam <jlam@pkgsrc.org> | 2005-04-28 22:57:55 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-04-28 22:57:55 +0000 |
commit | 204474bbd97d7e83102bb65d8975166f424ea7df (patch) | |
tree | 9613898eb5ea81e0aeae151054c2abd375b8f9ad | |
parent | 5cd5a29699d6fd4d55b44b7a6e142d1fd72dbbee (diff) | |
download | pkgsrc-204474bbd97d7e83102bb65d8975166f424ea7df.tar.gz |
We don't need to use ${SORT} to sort a list... just use the :O modifier.
-rw-r--r-- | misc/XFree86-dirs/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/misc/XFree86-dirs/Makefile b/misc/XFree86-dirs/Makefile index b23b36e5e1f..bfb2d3474aa 100644 --- a/misc/XFree86-dirs/Makefile +++ b/misc/XFree86-dirs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2005/04/28 22:55:45 jlam Exp $ +# $NetBSD: Makefile,v 1.8 2005/04/28 22:57:55 jlam Exp $ # DISTNAME= XFree86-dirs-1.1 @@ -23,8 +23,7 @@ XFREE86_ONLY_DIRS= # defined .include "../../mk/bsd.prefs.mk" .include "dirs.mk" -_SORTED!= ${ECHO} ${XFREE86_DIRS} | ${TR} -s ' \t' '\n' | ${SORT} -MAKE_DIRS+= ${_SORTED:S/^/${X11ROOT}\//:C/\/\/\/*/\//g} +MAKE_DIRS+= ${XFREE86_DIRS:O:S/^/${X11ROOT}\//:C/\/\/\/*/\//g} do-install: # nothing |