diff options
author | toshii <toshii> | 2003-05-10 17:40:00 +0000 |
---|---|---|
committer | toshii <toshii> | 2003-05-10 17:40:00 +0000 |
commit | e20a302949c4a31e4216ccc993b0e3a5dfc76c9d (patch) | |
tree | 081cbcdb67a22d41e3a4f6f1ea0eef3585c5f785 | |
parent | 5462c14a3b5bf2a7116144498691a56d51c41ce6 (diff) | |
download | pkgsrc-e20a302949c4a31e4216ccc993b0e3a5dfc76c9d.tar.gz |
Drop a duplicate DEPENDS line.
Use ${SORT} rather than sort.
-rw-r--r-- | time/xalarm/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/time/xalarm/Makefile b/time/xalarm/Makefile index 96aaff23fae..89221969046 100644 --- a/time/xalarm/Makefile +++ b/time/xalarm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2003/03/29 12:42:45 jmmv Exp $ +# $NetBSD: Makefile,v 1.4 2003/05/10 17:40:00 toshii Exp $ DISTNAME= xalarm-3.03 PKGNAME= xalarm-3.05 @@ -36,12 +36,10 @@ FORTUNE= `/usr/games/fortune` MAKE_FLAGS+= EXTRA_DEFINES=-DFORKRETURNSPID_T .endif -DEPENDS+= skill>=4.0:../../sysutils/skill - pre-configure: .if defined(XALARM_USE_YOW) # if multiple version emacs of emacs are there, take the higher one... - YOW=`${FIND} ${LOCALBASE}/libexec/emacs -name yow -print 2>/dev/null | sort -rn | ${HEAD} -1` ; \ + YOW=`${FIND} ${LOCALBASE}/libexec/emacs -name yow -print 2>/dev/null | ${SORT} -rn | ${HEAD} -1` ; \ if ${TEST} x$${YOW} = x ; then \ YOW=${YOW} ; \ fi ; ${SETENV} YOW=$${YOW} \ |