summaryrefslogtreecommitdiff
path: root/devel/haskell-mode
diff options
context:
space:
mode:
authorjtb <jtb@pkgsrc.org>2001-04-28 23:59:17 +0000
committerjtb <jtb@pkgsrc.org>2001-04-28 23:59:17 +0000
commitb97c41dde34f14e03b5985a3cf6a23aee3e7b3b4 (patch)
tree97228d7da600e4c7e4800096060fa118f9f09a60 /devel/haskell-mode
parenta1f837e37cee66bfce1e9c82c23e458c36a64d22 (diff)
downloadpkgsrc-b97c41dde34f14e03b5985a3cf6a23aee3e7b3b4.tar.gz
Remove redundant echoing, quoting, and input redirection to sed.
Diffstat (limited to 'devel/haskell-mode')
-rw-r--r--devel/haskell-mode/Makefile10
1 files changed, 4 insertions, 6 deletions
diff --git a/devel/haskell-mode/Makefile b/devel/haskell-mode/Makefile
index 3e41d50dbc7..1041937d475 100644
--- a/devel/haskell-mode/Makefile
+++ b/devel/haskell-mode/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2001/04/14 21:43:40 jtb Exp $
+# $NetBSD: Makefile,v 1.5 2001/04/28 23:59:18 jtb Exp $
DISTNAME= haskell-mode-20001129
CATEGORIES= devel editors
@@ -22,7 +22,7 @@ EMACS= emacs
LISPDIR= share/emacs/site-lisp/haskell-mode
.endif
-PLIST_SUBST+= LISPDIR="${LISPDIR}"
+PLIST_SUBST+= LISPDIR=${LISPDIR}
SRCS= haskell-doc.el haskell-mode.el haskell-font-lock.el \
haskell-simple-indent.el haskell-hugs.el haskell-decl-scan.el \
@@ -35,9 +35,7 @@ do-build:
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/${LISPDIR}
- @for f in ${SRCS} ${SRCS:.el=.elc} ; do \
- i="${INSTALL_DATA} ${WRKSRC}/$$f ${PREFIX}/${LISPDIR}"; \
- ${ECHO} $$i; $$i; \
- done
+ cd ${WRKSRC} && ${INSTALL_DATA} ${SRCS} ${SRCS:.el=.elc} \
+ ${PREFIX}/${LISPDIR}
.include "../../mk/bsd.pkg.mk"