diff options
author | jlam <jlam@pkgsrc.org> | 2005-04-28 23:06:01 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-04-28 23:06:01 +0000 |
commit | ae5b29e125d6bd32bdd3cb3703e0abf3242fcd8f (patch) | |
tree | dc4770533bc90fe01b390dd26391b7977ff552a1 /misc/xdg-x11-dirs | |
parent | 7cceaadc84e1ec9190aa5b8104d7c1cc6efc0fae (diff) | |
download | pkgsrc-ae5b29e125d6bd32bdd3cb3703e0abf3242fcd8f.tar.gz |
We don't need ${SORT} to sort a list .. just use the :O modifier instead.
Diffstat (limited to 'misc/xdg-x11-dirs')
-rw-r--r-- | misc/xdg-x11-dirs/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/misc/xdg-x11-dirs/Makefile b/misc/xdg-x11-dirs/Makefile index ce31258d7cc..f1ce131215f 100644 --- a/misc/xdg-x11-dirs/Makefile +++ b/misc/xdg-x11-dirs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2005/04/19 13:06:49 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2005/04/28 23:06:01 jlam Exp $ # DISTNAME= xdg-x11-dirs-1.2 @@ -27,8 +27,7 @@ WRKSRC= ${WRKDIR} .if ${X11PREFIX} == ${LOCALBASE} DEPENDS+= xdg-dirs>=1.1:../../misc/xdg-dirs .else -_SORTED!= ${ECHO} ${XDG_X11_DIRS} | ${TR} -s ' \t' '\n' | ${SORT} -MAKE_DIRS+= ${_SORTED:S/^/${PREFIX}\//} +MAKE_DIRS+= ${XDG_X11_DIRS:O:S/^/${PREFIX}\//} .endif do-install: # nothing |