Module Name: src
Committed By: pooka
Date: Tue Jun 2 00:38:38 UTC 2015
Modified Files:
src/sys/modules/hdaudio: Makefile.inc
src/sys/modules/hdaudio_pci: Makefile.inc
Log Message:
Use SRCS+= instead of SRCS= in Makefile.incs to avoid assumptions of
what is being included when.
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/modules/hdaudio/Makefile.inc
cvs rdiff -u -r1.1 -r1.2 src/sys/modules/hdaudio_pci/Makefile.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/modules/hdaudio/Makefile.inc
diff -u src/sys/modules/hdaudio/Makefile.inc:1.2 src/sys/modules/hdaudio/Makefile.inc:1.3
--- src/sys/modules/hdaudio/Makefile.inc:1.2 Sat Mar 28 14:09:59 2015
+++ src/sys/modules/hdaudio/Makefile.inc Tue Jun 2 00:38:37 2015
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.2 2015/03/28 14:09:59 jmcneill Exp $
+# $NetBSD: Makefile.inc,v 1.3 2015/06/02 00:38:37 pooka Exp $
-.PATH: ${S}/dev/hdaudio
-SRCS= hdaudio.c
+.PATH: ${NETBSDSRCDIR}/sys/dev/hdaudio
+SRCS+= hdaudio.c
Index: src/sys/modules/hdaudio_pci/Makefile.inc
diff -u src/sys/modules/hdaudio_pci/Makefile.inc:1.1 src/sys/modules/hdaudio_pci/Makefile.inc:1.2
--- src/sys/modules/hdaudio_pci/Makefile.inc:1.1 Sat Mar 28 14:09:59 2015
+++ src/sys/modules/hdaudio_pci/Makefile.inc Tue Jun 2 00:38:38 2015
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.1 2015/03/28 14:09:59 jmcneill Exp $
+# $NetBSD: Makefile.inc,v 1.2 2015/06/02 00:38:38 pooka Exp $
# This file is used by modules and rump kernels
@@ -7,4 +7,4 @@ IOCONFDIR:= ${.PARSEDIR}
.PATH: ${NETBSDSRCDIR}/sys/dev/pci ${IOCONFDIR}
IOCONF= hdaudio_pci.ioconf
-SRCS= hdaudio_pci.c
+SRCS+= hdaudio_pci.c