pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mk Replaced three instances of $s with ${s} to make it...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/baf8b585454e
branches:  trunk
changeset: 494298:baf8b585454e
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Sun May 22 21:52:49 2005 +0000

description:
Replaced three instances of $s with ${s} to make it consistent with the
three instances that were already ${s}.

diffstat:

 mk/emacs.mk |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (22 lines):

diff -r de1edd1cfaec -r baf8b585454e mk/emacs.mk
--- a/mk/emacs.mk       Sun May 22 21:50:08 2005 +0000
+++ b/mk/emacs.mk       Sun May 22 21:52:49 2005 +0000
@@ -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 @@
 .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



Home | Main Index | Thread Index | Old Index