diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2007-11-08 12:59:13 +0100 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2008-01-28 23:14:35 +0100 |
commit | 9e233625fbee1f977929a5406533b96011f1a06b (patch) | |
tree | ab3d3f6a9f4aa8839a3cabfee5052dfd07545669 /drivers/base | |
parent | 800074345544ae6ec06c77b1a3f7ba032f84bd10 (diff) | |
download | linux-stable-9e233625fbee1f977929a5406533b96011f1a06b.tar.gz linux-stable-9e233625fbee1f977929a5406533b96011f1a06b.tar.bz2 linux-stable-9e233625fbee1f977929a5406533b96011f1a06b.zip |
convert drivers/base/power/Makefile to ccflags
This patch converts drivers/base/power/Makefile to use ccflags instead
of EXTRA_CFLAGS.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'drivers/base')
-rw-r--r-- | drivers/base/power/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/base/power/Makefile b/drivers/base/power/Makefile index 06a86fe6a78d..de28dfd3b96c 100644 --- a/drivers/base/power/Makefile +++ b/drivers/base/power/Makefile @@ -2,9 +2,5 @@ obj-$(CONFIG_PM) += sysfs.o obj-$(CONFIG_PM_SLEEP) += main.o obj-$(CONFIG_PM_TRACE) += trace.o -ifeq ($(CONFIG_DEBUG_DRIVER),y) -EXTRA_CFLAGS += -DDEBUG -endif -ifeq ($(CONFIG_PM_VERBOSE),y) -EXTRA_CFLAGS += -DDEBUG -endif +ccflags-$(CONFIG_DEBUG_DRIVER) := -DDEBUG +ccflags-$(CONFIG_PM_VERBOSE) += -DDEBUG |