diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2006-02-27 22:03:23 -0500 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2006-02-27 22:03:23 -0500 |
commit | e0449a4964c2aec77cf02c33d2a9375b647530ce (patch) | |
tree | cd6877a7ba8c4e210db6ce2c715a23ffe3c0e7b8 | |
parent | 7e653c386bf40fb3287ce7fe2698c731d10daca9 (diff) | |
download | mediapointer-dvb-s2-e0449a4964c2aec77cf02c33d2a9375b647530ce.tar.gz mediapointer-dvb-s2-e0449a4964c2aec77cf02c33d2a9375b647530ce.tar.bz2 |
remove test for CONFIG_VIDEO_DEV to set inst_video += videodev.ko
From: Michael Krufky <mkrufky@linuxtv.org>
The test " ifeq ($(CONFIG_VIDEO_DEV),m) " isn't working in
the inst_foo section of the Makefile. Since we are already
warning the user that errors may occur in the install step,
it is safe to include videodev.ko whether or not it is
actually present.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
-rw-r--r-- | v4l/Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/v4l/Makefile b/v4l/Makefile index 1a34c6f24..dcc8cc020 100644 --- a/v4l/Makefile +++ b/v4l/Makefile @@ -299,9 +299,7 @@ inst_video := btcx-risc.ko bttv.ko tda9887.ko tuner.ko tvaudio.ko tveeprom.ko sa #inst_video += bt87x.ko inst_video += tvmixer.ko v4l1-compat.ko v4l2-common.ko wm8775.ko cs53l32a.ko inst_video += video-buf.ko video-buf-dvb.ko -ifeq ($(CONFIG_VIDEO_DEV),m) inst_video += videodev.ko -endif inst_video += ir-kbd-i2c.ko msp3400.ko inst_video += tvp5150.ko saa711x.ko saa7134-alsa.ko saa7134-oss.ko inst_video += saa7115.ko cx25840.ko saa7127.ko compat_ioctl32.ko |