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/svr4/Makefile | |
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/svr4/Makefile')
-rw-r--r-- | sys/modules/svr4/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/modules/svr4/Makefile b/sys/modules/svr4/Makefile index 9204738..6229ec9 100644 --- a/sys/modules/svr4/Makefile +++ b/sys/modules/svr4/Makefile @@ -26,11 +26,11 @@ svr4_genassym.o: svr4_genassym.c svr4.h @ machine .if !defined(KERNBUILDDIR) opt_compat.h: - echo "#define COMPAT_43 1" > opt_compat.h + echo "#define COMPAT_43 1" > ${.TARGET} .if defined(DEBUG) opt_svr4.h: - echo "#define DEBUG_SVR4 1" > opt_svr4.h + echo "#define DEBUG_SVR4 1" > ${.TARGET} .endif .endif |