diff options
author | imp <imp@FreeBSD.org> | 2008-09-01 23:59:00 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2008-09-01 23:59:00 +0000 |
commit | cd46c93cc859f52893c984378f5e8721db16b2fb (patch) | |
tree | f3879290a2a415b707c0fc6df509bc783d30abf6 /sys/modules/pflog | |
parent | cb1bd25c2ffee51ff6dd342a65fb44ca77f62814 (diff) | |
download | FreeBSD-src-cd46c93cc859f52893c984378f5e8721db16b2fb.zip FreeBSD-src-cd46c93cc859f52893c984378f5e8721db16b2fb.tar.gz |
Per email to arch@ a little while ago (that was greeted with silence),
prefer the more common > ${.TARGET} over > opt_foo.h in modules
makefiles.
Diffstat (limited to 'sys/modules/pflog')
-rw-r--r-- | sys/modules/pflog/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/modules/pflog/Makefile b/sys/modules/pflog/Makefile index 12ead12..2dbbd6c 100644 --- a/sys/modules/pflog/Makefile +++ b/sys/modules/pflog/Makefile @@ -12,15 +12,15 @@ CFLAGS+= -I${.CURDIR}/../../contrib/pf .if !defined(KERNBUILDDIR) opt_inet.h: - echo "#define INET 1" > opt_inet.h + echo "#define INET 1" > ${.TARGET} .if ${MK_INET6_SUPPORT} != "no" opt_inet6.h: - echo "#define INET6 1" > opt_inet6.h + echo "#define INET6 1" > ${.TARGET} .endif opt_bpf.h: - echo "#define DEV_BPF 1" > opt_bpf.h + echo "#define DEV_BPF 1" > ${.TARGET} .endif .include <bsd.kmod.mk> |