Source-Changes-HG archive

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

[src/trunk]: src Change directory to .CURDIR before invoking ${MAKE}.



details:   https://anonhg.NetBSD.org/src/rev/1776b877a517
branches:  trunk
changeset: 533060:1776b877a517
user:      enami <enami%NetBSD.org@localhost>
date:      Thu Jun 20 08:21:23 2002 +0000

description:
Change directory to .CURDIR before invoking ${MAKE}.

diffstat:

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

diffs (18 lines):

diff -r 26b73d4ea63b -r 1776b877a517 Makefile
--- a/Makefile  Thu Jun 20 07:43:39 2002 +0000
+++ b/Makefile  Thu Jun 20 08:21:23 2002 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.176 2002/06/19 00:17:11 lukem Exp $
+#      $NetBSD: Makefile,v 1.177 2002/06/20 08:21:23 enami 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
@@ -102,7 +102,7 @@
        (cd ${.CURDIR}/gnu/usr.bin/texinfo/install-info && ${MAKE} infodir-meta)
 .endif
 .if !defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/"
-       (${MAKE} postinstall-check)
+       (cd ${.CURDIR} && ${MAKE} postinstall-check)
 .endif
 
 postinstall-check:



Home | Main Index | Thread Index | Old Index