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/aha | |
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/aha')
-rw-r--r-- | sys/modules/aha/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/aha/Makefile b/sys/modules/aha/Makefile index 36c7359..24d356c 100644 --- a/sys/modules/aha/Makefile +++ b/sys/modules/aha/Makefile @@ -8,7 +8,7 @@ SRCS= aha.c aha_isa.c ahareg.h opt_cam.h device_if.h bus_if.h \ .if !defined(KERNBUILDDIR) opt_scsi.h: - echo "#define SCSI_DELAY 15000" > opt_scsi.h + echo "#define SCSI_DELAY 15000" > ${.TARGET} .endif .include <bsd.kmod.mk> |