diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2004-02-07 11:05:10 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2004-02-07 11:05:10 +0000 |
commit | 079cbb98acbb31557dd10f9221290da13403be18 (patch) | |
tree | 254b0eee1470ff37f95ae4e431876ca753837b1d | |
parent | d85f27ce7fc1a9c4a739c4c923355e113d6513d9 (diff) | |
download | src-079cbb98acbb31557dd10f9221290da13403be18.tar.gz src-079cbb98acbb31557dd10f9221290da13403be18.zip |
Style: use the defined() expression explicitly.
Notes
Notes:
svn path=/head/; revision=125561
-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 3f171a3d61e5..b2227c80ecd9 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 |