diff options
author | wiz <wiz@pkgsrc.org> | 2002-07-17 18:29:09 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2002-07-17 18:29:09 +0000 |
commit | f37549ed1ef479e8e71f4d84ff15027738ec131e (patch) | |
tree | f2b04e71cd9b614dcd3499b6f6ef7d16499c5825 | |
parent | 12fe0a2d5b672f19e50154bab01024a2671eee7f (diff) | |
download | pkgsrc-f37549ed1ef479e8e71f4d84ff15027738ec131e.tar.gz |
Ups, fix botch in sort -> ${SORT}.
-rw-r--r-- | x11/xservers/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/xservers/Makefile b/x11/xservers/Makefile index dc4f65a694d..5da6fd64c9f 100644 --- a/x11/xservers/Makefile +++ b/x11/xservers/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2002/07/02 15:30:49 wiz Exp $# +# $NetBSD: Makefile,v 1.10 2002/07/17 18:29:09 wiz Exp $# DISTNAME= xservers-3.3.6.3 CATEGORIES= x11 @@ -56,7 +56,7 @@ do-configure: post-install: cd ${PREFIX} && \ ${FIND} ${X11_SUBDIR} \! -type d | ${SORT} >${PLIST_SRC} && \ - ${FIND} ${X11_SUBDIR} -type d | ${SORT${SORT} -r | \ + ${FIND} ${X11_SUBDIR} -type d | ${SORT} -r | \ ${AWK} '{print("@dirrm "$$1)}' >>${PLIST_SRC} .include "../../mk/bsd.pkg.mk" |