Source-Changes-HG archive

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

[src/netbsd-1-6]: src/usr.bin/make Pull up revision 1.10 (requested by thorpe...



details:   https://anonhg.NetBSD.org/src/rev/264e3a8f7239
branches:  netbsd-1-6
changeset: 529597:264e3a8f7239
user:      he <he%NetBSD.org@localhost>
date:      Sat Nov 30 15:24:12 2002 +0000

description:
Pull up revision 1.10 (requested by thorpej in ticket #812):
  If MAKE_BOOTSTRAP and HAVE_CONFIG_H, pull in "config.h" so
  that we get the correct _PATH_BSHELL.

diffstat:

 usr.bin/make/pathnames.h |  8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diffs (22 lines):

diff -r 6e3dea39e8c0 -r 264e3a8f7239 usr.bin/make/pathnames.h
--- a/usr.bin/make/pathnames.h  Sat Nov 30 15:22:06 2002 +0000
+++ b/usr.bin/make/pathnames.h  Sat Nov 30 15:24:12 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pathnames.h,v 1.9 2002/04/27 15:14:30 bjh21 Exp $      */
+/*     $NetBSD: pathnames.h,v 1.9.2.1 2002/11/30 15:24:12 he Exp $     */
 
 /*
  * Copyright (c) 1990, 1993
@@ -35,7 +35,11 @@
  *     from: @(#)pathnames.h   5.2 (Berkeley) 6/1/90
  */
 
-#ifndef MAKE_BOOTSTRAP
+#ifdef MAKE_BOOTSTRAP
+#if HAVE_CONFIG_H
+#include "config.h"
+#endif
+#else
 #include <paths.h>
 #endif
 



Home | Main Index | Thread Index | Old Index