Source-Changes-HG archive

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

[src/trunk]: src/share/mk Fix a typo which caused "make obj" to try to *execu...



details:   https://anonhg.NetBSD.org/src/rev/f972cc16b437
branches:  trunk
changeset: 473633:f972cc16b437
user:      tls <tls%NetBSD.org@localhost>
date:      Thu Jun 10 20:34:26 1999 +0000

description:
Fix a typo which caused "make obj" to try to *execute* the direcroty it was in.

diffstat:

 share/mk/bsd.obj.mk |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 3f10b3de2164 -r f972cc16b437 share/mk/bsd.obj.mk
--- a/share/mk/bsd.obj.mk       Thu Jun 10 15:48:27 1999 +0000
+++ b/share/mk/bsd.obj.mk       Thu Jun 10 20:34:26 1999 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: bsd.obj.mk,v 1.18 1999/06/08 18:28:38 kim Exp $
+#      $NetBSD: bsd.obj.mk,v 1.19 1999/06/10 20:34:26 tls Exp $
 
 .if !target(__initialized_obj__)
 __initialized_obj__:
@@ -31,7 +31,7 @@
 
 obj:
        @cd ${.CURDIR}; rm -f ${__objdir} > /dev/null 2>&1 || true; \
-       here=`${PWD}`; subdir=$${here#${BSDSRCDIR}/}; \
+       here='${PWD}'; subdir=$${here#${BSDSRCDIR}/}; \
        if test $$here != $$subdir ; then \
                dest=${__usrobjdir}/$$subdir${__usrobjdirpf} ; \
                echo "$$here/${__objdir} -> $$dest"; \



Home | Main Index | Thread Index | Old Index