Module Name:    src
Committed By:   uebayasi
Date:           Thu Nov 13 13:44:31 UTC 2014

Modified Files:
        src/sys/conf: Makefile.kern.inc

Log Message:
`ld -r' needs ${LINKFORMAT}.  This fixes the experimental config(1) modular
build for MIPS64 ports.


To generate a diff of this commit:
cvs rdiff -u -r1.179 -r1.180 src/sys/conf/Makefile.kern.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/conf/Makefile.kern.inc
diff -u src/sys/conf/Makefile.kern.inc:1.179 src/sys/conf/Makefile.kern.inc:1.180
--- src/sys/conf/Makefile.kern.inc:1.179	Fri Nov  7 12:34:14 2014
+++ src/sys/conf/Makefile.kern.inc	Thu Nov 13 13:44:31 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.kern.inc,v 1.179 2014/11/07 12:34:14 nakayama Exp $
+#	$NetBSD: Makefile.kern.inc,v 1.180 2014/11/13 13:44:31 uebayasi Exp $
 #
 # This file contains common `MI' targets and definitions and it is included
 # at the bottom of each `MD' ${MACHINE}/conf/Makefile.${MACHINE}.
@@ -160,8 +160,8 @@ NORMAL_S?=	@${_MKSHMSG} "compile  ${.CUR
 # link rules: 
 LINK_O?=	@${_MKSHMSG} "   link  ${.CURDIR:T}/${.TARGET}" && \
 		${_MKSHECHO}\
-		${LD} -r -Map=${.TARGET}.map -o ${.TARGET} ${.ALLSRC} && \
-		${LD} -r -Map=${.TARGET}.map -o ${.TARGET} ${.ALLSRC}
+		${LD} -r ${LINKFORMAT} -Map=${.TARGET}.map -o ${.TARGET} ${.ALLSRC} && \
+		${LD} -r ${LINKFORMAT} -Map=${.TARGET}.map -o ${.TARGET} ${.ALLSRC}
 
 ##
 ## (3) libkern and compat

Reply via email to