diff options
author | Mauro Carvalho Chehab <devnull@localhost> | 2005-10-09 20:14:34 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab <devnull@localhost> | 2005-10-09 20:14:34 +0000 |
commit | a199d8612062dc3d75419493c955b796ce5652c8 (patch) | |
tree | ad21e5b4a74eded68efd63443e178bb37b368e44 /v4l/Make.config | |
parent | ad123ad074a9b468ce2a16b25d3358364bd9da02 (diff) | |
download | mediapointer-dvb-s2-a199d8612062dc3d75419493c955b796ce5652c8.tar.gz mediapointer-dvb-s2-a199d8612062dc3d75419493c955b796ce5652c8.tar.bz2 |
From: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
* ../v4l/Make.config:
- Fixed dvb compiling.
* ../v4l/Make
- Included some options to make easier to commit.
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Diffstat (limited to 'v4l/Make.config')
-rw-r--r-- | v4l/Make.config | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/v4l/Make.config b/v4l/Make.config index bd8f1c145..3b3e69803 100644 --- a/v4l/Make.config +++ b/v4l/Make.config @@ -25,8 +25,9 @@ CONFIG_DVB_BT8XX := n CONFIG_DVB_FRONTENDS := n ifneq ($(KERNELRELEASE),) -need_dvb = $(shell test $(SUBLEVEL) -ge 12 && echo yes) -need_dvb = $(shell test $(VERSION) -lt 6 && echo no) +need_dvb := $(shell test $(SUBLEVEL) -ge 12 -a $(PATCHLEVEL) -ge 6 && echo yes) +#need_dvb := $(shell test $(PATCHLEVEL) -ge 6 && echo yes) +#need_dvb := $(shell test $(SUBLEVEL) -lt 12 && echo no) endif ifeq ($(need_dvb),yes) |