diff options
author | ru <ru@FreeBSD.org> | 2004-02-07 11:05:10 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-02-07 11:05:10 +0000 |
commit | 9d856a43dc7c8dc3074bc1b05dc268465e072e11 (patch) | |
tree | 254b0eee1470ff37f95ae4e431876ca753837b1d /sys | |
parent | 6480ab2343a81ebdbdd73ae15902b2422ac7d1b2 (diff) | |
download | FreeBSD-src-9d856a43dc7c8dc3074bc1b05dc268465e072e11.zip FreeBSD-src-9d856a43dc7c8dc3074bc1b05dc268465e072e11.tar.gz |
Style: use the defined() expression explicitly.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/boot/common/Makefile.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/boot/common/Makefile.inc b/sys/boot/common/Makefile.inc index 3f171a3d..b2227c8 100644 --- a/sys/boot/common/Makefile.inc +++ b/sys/boot/common/Makefile.inc @@ -19,15 +19,15 @@ SRCS+= dev_net.c .endif # Machine-independant ISA PnP -.if HAVE_ISABUS +.if defined(HAVE_ISABUS) SRCS+= isapnp.c .endif -.if HAVE_PNP +.if defined(HAVE_PNP) SRCS+= pnp.c .endif # Forth interpreter -.if BOOT_FORTH +.if defined(BOOT_FORTH) SRCS+= interp_forth.c MAN+= ../forth/loader.conf.5 MAN+= ../forth/loader.4th.8 |