diff options
author | matt mooney <mfm@muteddisk.com> | 2010-09-24 15:17:11 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-10-22 13:16:44 -0400 |
commit | 7a868088ee48d1816c10f9be6d32aef4cf30bcf7 (patch) | |
tree | 84a233edb60bab167328da49fa85c5c0ed59f46d /drivers/base/Makefile | |
parent | 38f49a5132f24d29236820eb5c7dd956e47f94a3 (diff) |
driver-core: base: change to new flag variable
Replace EXTRA_CFLAGS with ccflags-y.
Signed-off-by: matt mooney <mfm@muteddisk.com>
Acked-by: WANG Cong <xiyou.wangcong@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/base/Makefile')
-rw-r--r-- | drivers/base/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/base/Makefile b/drivers/base/Makefile index c12c7f2f2a6f..5f51c3b4451e 100644 --- a/drivers/base/Makefile +++ b/drivers/base/Makefile | |||
@@ -19,7 +19,5 @@ obj-$(CONFIG_MODULES) += module.o | |||
19 | endif | 19 | endif |
20 | obj-$(CONFIG_SYS_HYPERVISOR) += hypervisor.o | 20 | obj-$(CONFIG_SYS_HYPERVISOR) += hypervisor.o |
21 | 21 | ||
22 | ifeq ($(CONFIG_DEBUG_DRIVER),y) | 22 | ccflags-$(CONFIG_DEBUG_DRIVER) := -DDEBUG |
23 | EXTRA_CFLAGS += -DDEBUG | ||
24 | endif | ||
25 | 23 | ||