Commit 8a293280 authored by Linus Torvalds's avatar Linus Torvalds Committed by Linus Torvalds

Fix makefile errors

parent 12f95fd6
......@@ -7,11 +7,14 @@ O_TARGET := message.o
mod-subdirs := i2o fusion
subdir-$(CONFIG_I2O) += i2o
ifeq($(CONFIG_I2O),y)
ifeq ($(CONFIG_I2O),y)
obj-y += i2o/i2o.o
endif
subdir-$(CONFIG_FUSION) += fusion
ifeq($(CONFIG_FUSION),y)
ifeq ($(CONFIG_FUSION),y)
obj-y += fusion/fusion.o
endif
include $(TOPDIR)/Rules.make
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment