Module Name: src Committed By: matt Date: Thu Aug 2 00:22:32 UTC 2012
Modified Files: src/sys/modules/bpf: Makefile Log Message: Add missing paren. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/modules/bpf/Makefile 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/bpf/Makefile diff -u src/sys/modules/bpf/Makefile:1.2 src/sys/modules/bpf/Makefile:1.3 --- src/sys/modules/bpf/Makefile:1.2 Wed Aug 1 23:24:29 2012 +++ src/sys/modules/bpf/Makefile Thu Aug 2 00:22:32 2012 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2012/08/01 23:24:29 rmind Exp $ +# $NetBSD: Makefile,v 1.3 2012/08/02 00:22:32 matt Exp $ # .include "../Makefile.inc" @@ -15,7 +15,7 @@ SRCS= bpf.c bpf_filter.c .PATH: ${S}/arch/${MACHINE_CPU}/${MACHINE_CPU} .if (exists(${S}/arch/${MACHINE}/${MACHINE}/bpf_jit_machdep.c)) || \ - (exists(${S}/arch/${MACHINE_ARCH}/${MACHINE_ARCH}/bpf_jit_machdep.c) || \ + (exists(${S}/arch/${MACHINE_ARCH}/${MACHINE_ARCH}/bpf_jit_machdep.c)) || \ (exists(${S}/arch/${MACHINE_CPU}/${MACHINE_CPU}/bpf_jit_machdep.c)) SRCS+= bpf_jit.c SRCS+= bpf_jit_machdep.c