diff options
author | jlam <jlam@pkgsrc.org> | 2005-04-28 23:04:08 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-04-28 23:04:08 +0000 |
commit | 7cceaadc84e1ec9190aa5b8104d7c1cc6efc0fae (patch) | |
tree | a28a5edbce25cada8e696909b41429064e533b78 /misc/gnome2-dirs | |
parent | 96eb165429f6859d24809d7a2b744301c5c94c22 (diff) | |
download | pkgsrc-7cceaadc84e1ec9190aa5b8104d7c1cc6efc0fae.tar.gz |
We don't need to use ${SORT} to sort a list -- just use the :O modifier.
Diffstat (limited to 'misc/gnome2-dirs')
-rw-r--r-- | misc/gnome2-dirs/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/misc/gnome2-dirs/Makefile b/misc/gnome2-dirs/Makefile index 087bc21ff32..ea504ed6ab1 100644 --- a/misc/gnome2-dirs/Makefile +++ b/misc/gnome2-dirs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2005/04/11 21:46:34 tv Exp $ +# $NetBSD: Makefile,v 1.21 2005/04/28 23:04:08 jlam Exp $ # DISTNAME= gnome2-dirs-1.5 @@ -23,13 +23,12 @@ NO_BUILD= # defined .if ${X11PREFIX} == ${LOCALBASE} DEPENDS+= gnome-dirs>=1.0:../../misc/gnome-dirs -_SORTED!= ${ECHO} ${GNOME2_DIRS} | ${TR} -s ' \t' '\n' | ${SORT} +ALL_GNOME_DIRS= ${GNOME2_DIRS} .else -_SORTED!= ${ECHO} ${GNOME_DIRS} ${GNOME2_DIRS} | ${TR} -s ' \t' '\n' | \ - ${SORT} +ALL_GNOME_DIRS= ${GNOME_DIRS} ${GNOME2_DIRS} .endif -MAKE_DIRS+= ${_SORTED:S/^/${PREFIX}\//} +MAKE_DIRS+= ${ALL_GNOME_DIRS:O:S/^/${PREFIX}\//} do-install: # nothing |