Fri Apr 1 07:23:15 2016 UTC ()
' != " so make the condition actually work. (same as r1.30)


(knakahara)
diff -r1.31 -r1.32 src/usr.bin/kdump/Makefile.ioctl-c

cvs diff -r1.31 -r1.32 src/usr.bin/kdump/Makefile.ioctl-c (expand / switch to unified diff)

--- src/usr.bin/kdump/Makefile.ioctl-c 2016/02/06 20:21:56 1.31
+++ src/usr.bin/kdump/Makefile.ioctl-c 2016/04/01 07:23:15 1.32
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile.ioctl-c,v 1.31 2016/02/06 20:21:56 joerg Exp $ 1# $NetBSD: Makefile.ioctl-c,v 1.32 2016/04/01 07:23:15 knakahara Exp $
2 2
3# NOTE: <bsd.own.mk> needs to be previously .included for NETBSDSRCDIR 3# NOTE: <bsd.own.mk> needs to be previously .included for NETBSDSRCDIR
4 4
5# We are trying to get the list of .h files that define all ioctls 5# We are trying to get the list of .h files that define all ioctls
6# This version grabs the non-obsolete .h files from the set lists 6# This version grabs the non-obsolete .h files from the set lists
7# and silently ignores any that don't exist in ${DESTDIR}. 7# and silently ignores any that don't exist in ${DESTDIR}.
8# NB: The compiler uses the .h files in ${NETBSDSRCDIR}. 8# NB: The compiler uses the .h files in ${NETBSDSRCDIR}.
9 9
10SETBASES= ${NETBSDSRCDIR}/distrib/sets/lists/comp \ 10SETBASES= ${NETBSDSRCDIR}/distrib/sets/lists/comp \
11 ${NETBSDSRCDIR}/distrib/sets/lists/xcomp 11 ${NETBSDSRCDIR}/distrib/sets/lists/xcomp
12 12
13.for sb in ${SETBASES} 13.for sb in ${SETBASES}
14.if exists(${sb}/mi) 14.if exists(${sb}/mi)
@@ -31,27 +31,27 @@ DEPFILES != (${DEPFILEGLOB}; echo ${EXTR @@ -31,27 +31,27 @@ DEPFILES != (${DEPFILEGLOB}; echo ${EXTR
31 31
32${PROG}-ioctl.c: mkioctls Makefile ${DEPFILES} ${SETFILES} 32${PROG}-ioctl.c: mkioctls Makefile ${DEPFILES} ${SETFILES}
33 ${_MKTARGET_CREATE} 33 ${_MKTARGET_CREATE}
34 AWK=${TOOL_AWK:Q} CC="${CC}" DESTDIR="${DESTDIR}" SED=${TOOL_SED:Q} \ 34 AWK=${TOOL_AWK:Q} CC="${CC}" DESTDIR="${DESTDIR}" SED=${TOOL_SED:Q} \
35 ${HOST_SH} ${NETBSDSRCDIR}/usr.bin/kdump/mkioctls \ 35 ${HOST_SH} ${NETBSDSRCDIR}/usr.bin/kdump/mkioctls \
36 ${DEPFILES} >${.TARGET} 36 ${DEPFILES} >${.TARGET}
37 37
38SRCS+= ${PROG}-ioctl.c 38SRCS+= ${PROG}-ioctl.c
39CLEANFILES+= ${PROG}-ioctl.c 39CLEANFILES+= ${PROG}-ioctl.c
40DPSRCS+= ${PROG}-ioctl.c 40DPSRCS+= ${PROG}-ioctl.c
41CPPFLAGS+= -I${DESTDIR}/usr/X11R7/include/libdrm 41CPPFLAGS+= -I${DESTDIR}/usr/X11R7/include/libdrm
42CPPFLAGS+= -I${DESTDIR}/usr/X11R7/include/pixman-1 42CPPFLAGS+= -I${DESTDIR}/usr/X11R7/include/pixman-1
43CPPFLAGS+= -I${DESTDIR}/usr/X11R7/include 43CPPFLAGS+= -I${DESTDIR}/usr/X11R7/include
44.if ${MKDTRACE} != 'no" 44.if ${MKDTRACE} != "no"
45CPPFLAGS+= -I${NETBSDSRCDIR}/external/cddl/osnet/sys 45CPPFLAGS+= -I${NETBSDSRCDIR}/external/cddl/osnet/sys
46CPPFLAGS+= -I${NETBSDSRCDIR}/external/cddl/osnet/dist/uts/common 46CPPFLAGS+= -I${NETBSDSRCDIR}/external/cddl/osnet/dist/uts/common
47CPPFLAGS+= -D_DEV_IC_BT8XX_H_ 47CPPFLAGS+= -D_DEV_IC_BT8XX_H_
48.endif 48.endif
49CPPFLAGS+= -D_ALTQ_ALTQ_JOBS_H_ # redefinition of inline 49CPPFLAGS+= -D_ALTQ_ALTQ_JOBS_H_ # redefinition of inline
50# De-select one, dup ioctls 50# De-select one, dup ioctls
51CPPFLAGS+= -D_VIA_DRM_H_ # Missing header 51CPPFLAGS+= -D_VIA_DRM_H_ # Missing header
52#CPPFLAGS+= -D_I915_DRM_H_ # Dup ioctls 52#CPPFLAGS+= -D_I915_DRM_H_ # Dup ioctls
53CPPFLAGS+= -DQXL_DRM_H # Dup ioctls 53CPPFLAGS+= -DQXL_DRM_H # Dup ioctls
54CPPFLAGS+= -D__R128_DRM_H__ # Dup ioctls 54CPPFLAGS+= -D__R128_DRM_H__ # Dup ioctls
55CPPFLAGS+= -D__SIS_DRM_H__ # Dup ioctls 55CPPFLAGS+= -D__SIS_DRM_H__ # Dup ioctls
56CPPFLAGS+= -D__SAVAGE_DRM_H__ # Dup ioctls 56CPPFLAGS+= -D__SAVAGE_DRM_H__ # Dup ioctls
57CPPFLAGS+= -D__RADEON_DRM_H__ # Dup ioctls 57CPPFLAGS+= -D__RADEON_DRM_H__ # Dup ioctls