aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/cx
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2008-09-01 23:59:00 +0000
committerWarner Losh <imp@FreeBSD.org>2008-09-01 23:59:00 +0000
commit9e51595ce660d915899019d03075d8c17f3732d3 (patch)
treef3879290a2a415b707c0fc6df509bc783d30abf6 /sys/modules/cx
parenteaeb50d411b0b61ad58228701d5dea647746f678 (diff)
downloadsrc-9e51595ce660d915899019d03075d8c17f3732d3.tar.gz
src-9e51595ce660d915899019d03075d8c17f3732d3.zip
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.
Notes
Notes: svn path=/head/; revision=182668
Diffstat (limited to 'sys/modules/cx')
-rw-r--r--sys/modules/cx/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/modules/cx/Makefile b/sys/modules/cx/Makefile
index 0716f9055b93..937937075a8d 100644
--- a/sys/modules/cx/Makefile
+++ b/sys/modules/cx/Makefile
@@ -15,12 +15,12 @@ CFLAGS+= ${PROTOS}
.if ${NETGRAPH} != 0
opt_netgraph.h:
- echo "#define NETGRAPH $(NETGRAPH)" > opt_netgraph.h
+ echo "#define NETGRAPH $(NETGRAPH)" > ${.TARGET}
.endif
.if ${NG_CRONYX} != 0
opt_ng_cronyx.h:
- echo "#define NETGRAPH_CRONYX 1" > opt_ng_cronyx.h
+ echo "#define NETGRAPH_CRONYX 1" > ${.TARGET}
.endif
.endif