Source-Changes-HG archive

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

[src/trunk]: src remove two of the previous ${_M}; they were invoked before $...



details:   https://anonhg.NetBSD.org/src/rev/b42e0f171e8e
branches:  trunk
changeset: 486401:b42e0f171e8e
user:      mrg <mrg%NetBSD.org@localhost>
date:      Sun May 21 07:33:05 2000 +0000

description:
remove two of the previous ${_M}; they were invoked before $DESTDIR/share/mk may have existed.  add one more.

diffstat:

 Makefile |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (31 lines):

diff -r 5f643968bacc -r b42e0f171e8e Makefile
--- a/Makefile  Sun May 21 06:48:08 2000 +0000
+++ b/Makefile  Sun May 21 07:33:05 2000 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.116 2000/05/18 23:16:28 thorpej Exp $
+#      $NetBSD: Makefile,v 1.117 2000/05/21 07:33:05 mrg Exp $
 
 # This is the top-level makefile for building NetBSD. For an outline of
 # how to build a snapshot or release, as well as other release engineering
@@ -93,7 +93,7 @@
 .ifndef DESTDIR
        (cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs)
 .else
-       (cd ${.CURDIR}/etc && ${MAKE} ${_M} distrib-dirs)
+       (cd ${.CURDIR}/etc && ${MAKE} distrib-dirs)
 .endif
 .endif
 
@@ -120,10 +120,10 @@
        @false
 .endif
 .if ${MKSHARE} != "no"
-       (cd ${.CURDIR}/share/mk && ${MAKE} ${_M} install)
+       (cd ${.CURDIR}/share/mk && ${MAKE} install)
 .endif
 .if !defined(UPDATE) && !defined(NOCLEANDIR)
-       ${MAKE} ${_M} cleandir
+       ${MAKE} ${_J} ${_M} cleandir
 .endif
 .if ${MKOBJDIRS} != "no"
        ${MAKE} ${_M} obj



Home | Main Index | Thread Index | Old Index