From cd46c93cc859f52893c984378f5e8721db16b2fb Mon Sep 17 00:00:00 2001 From: imp Date: Mon, 1 Sep 2008 23:59:00 +0000 Subject: 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. --- sys/modules/sppp/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/modules/sppp') diff --git a/sys/modules/sppp/Makefile b/sys/modules/sppp/Makefile index 0976210..455d2f3 100644 --- a/sys/modules/sppp/Makefile +++ b/sys/modules/sppp/Makefile @@ -17,13 +17,13 @@ EXPORT_SYMS= sppp_attach \ .if !defined(KERNBUILDDIR) opt_inet.h: - echo "#define INET 1" > opt_inet.h + echo "#define INET 1" > ${.TARGET} opt_inet6.h: - echo "#define INET6 1" > opt_inet6.h + echo "#define INET6 1" > ${.TARGET} opt_ipx.h: - echo "#define IPX 1" > opt_ipx.h + echo "#define IPX 1" > ${.TARGET} .endif .include -- cgit v1.1