Source-Changes-HG archive

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

[src/trunk]: src Add ${_M} where it was missing in a few places.



details:   https://anonhg.NetBSD.org/src/rev/24c66c544814
branches:  trunk
changeset: 486319:24c66c544814
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Thu May 18 23:16:28 2000 +0000

description:
Add ${_M} where it was missing in a few places.

diffstat:

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

diffs (34 lines):

diff -r ff800deacf1c -r 24c66c544814 Makefile
--- a/Makefile  Thu May 18 20:37:42 2000 +0000
+++ b/Makefile  Thu May 18 23:16:28 2000 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.115 2000/05/09 00:17:10 thorpej Exp $
+#      $NetBSD: Makefile,v 1.116 2000/05/18 23:16:28 thorpej 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} distrib-dirs)
+       (cd ${.CURDIR}/etc && ${MAKE} ${_M} distrib-dirs)
 .endif
 .endif
 
@@ -120,13 +120,13 @@
        @false
 .endif
 .if ${MKSHARE} != "no"
-       (cd ${.CURDIR}/share/mk && ${MAKE} install)
+       (cd ${.CURDIR}/share/mk && ${MAKE} ${_M} install)
 .endif
 .if !defined(UPDATE) && !defined(NOCLEANDIR)
        ${MAKE} ${_M} cleandir
 .endif
 .if ${MKOBJDIRS} != "no"
-       ${MAKE} obj
+       ${MAKE} ${_M} obj
 .endif
 .if empty(HAVE_EGCS)
 .if defined(DESTDIR)



Home | Main Index | Thread Index | Old Index