diff options
author | rillig <rillig@pkgsrc.org> | 2005-05-22 21:52:49 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-05-22 21:52:49 +0000 |
commit | 04222ada9ccc695fa63ee7c71ed4098595608300 (patch) | |
tree | 9ef6b71bd8427e568e47ab86f5066f476a268bbd /mk | |
parent | b451fb4e8e71ee04ab52a0fa058bedd53ab88030 (diff) | |
download | pkgsrc-04222ada9ccc695fa63ee7c71ed4098595608300.tar.gz |
Replaced three instances of $s with ${s} to make it consistent with the
three instances that were already ${s}.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/emacs.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mk/emacs.mk b/mk/emacs.mk index 5bb2cfcdcb6..273bdcea48c 100644 --- a/mk/emacs.mk +++ b/mk/emacs.mk @@ -1,4 +1,4 @@ -# $NetBSD: emacs.mk,v 1.18 2005/04/08 19:05:29 jwise Exp $ +# $NetBSD: emacs.mk,v 1.19 2005/05/22 21:52:49 rillig Exp $ # # A Makefile fragment for Emacs Lisp packages. # @@ -197,9 +197,9 @@ _REPLACE_EMACS_SED= -e "1s;^\#!.*emacs;\#!${EMACS_BIN};" .if defined(REPLACE_EMACS) emacs-patch-scripts: .for s in ${REPLACE_EMACS} - ${CP} ${WRKSRC}/$s ${WRKSRC}/${s}.tmp - ${CHMOD} +w ${WRKSRC}/$s - ${SED} ${_REPLACE_EMACS_SED} <${WRKSRC}/${s}.tmp >${WRKSRC}/$s + ${CP} ${WRKSRC}/${s} ${WRKSRC}/${s}.tmp + ${CHMOD} +w ${WRKSRC}/${s} + ${SED} ${_REPLACE_EMACS_SED} <${WRKSRC}/${s}.tmp >${WRKSRC}/${s} .endfor post-patch: emacs-patch-scripts |