diff options
author | Trent Piepho <xyzzy@speakeasy.org> | 2007-06-04 16:18:51 -0700 |
---|---|---|
committer | Trent Piepho <xyzzy@speakeasy.org> | 2007-06-04 16:18:51 -0700 |
commit | adba0fd6ff159a95c07caddf54e73a84175ec736 (patch) | |
tree | 5decc3c4feac34ed2593b88e8874652b03cbaf28 /linux/drivers/media/dvb/pluto2 | |
parent | 58abfd68ccdc58500cc3229ea01bf5b91f76d1a0 (diff) | |
download | mediapointer-dvb-s2-adba0fd6ff159a95c07caddf54e73a84175ec736.tar.gz mediapointer-dvb-s2-adba0fd6ff159a95c07caddf54e73a84175ec736.tar.bz2 |
dvb: use '+=' instead of '=' for EXTRA_CFLAGS
From: Trent Piepho <xyzzy@speakeasy.org>
The Makefiles in the dvb directory tree used '=' when defining EXTRA_CFLAGS
rather than '+=', which is far more common in the rest of the kernel source.
= 14 times (9 of which this patch removes)
:= 25 times
+= 123 times
This change also has certain advantages for the out of kernel v4l-dvb build
system.
Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
Diffstat (limited to 'linux/drivers/media/dvb/pluto2')
-rw-r--r-- | linux/drivers/media/dvb/pluto2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/pluto2/Makefile b/linux/drivers/media/dvb/pluto2/Makefile index ce6a9aaf9..7ac128724 100644 --- a/linux/drivers/media/dvb/pluto2/Makefile +++ b/linux/drivers/media/dvb/pluto2/Makefile @@ -1,3 +1,3 @@ obj-$(CONFIG_DVB_PLUTO2) += pluto2.o -EXTRA_CFLAGS = -Idrivers/media/dvb/dvb-core/ -Idrivers/media/dvb/frontends/ +EXTRA_CFLAGS += -Idrivers/media/dvb/dvb-core/ -Idrivers/media/dvb/frontends/ |