diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-10-15 16:22:06 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-10-15 16:22:06 -0200 |
commit | 2bd35cda866389fda170f211d63bfd4893a7b464 (patch) | |
tree | 114fde96970c0a5b073da965b9de4386a6ea7822 /v4l/scripts | |
parent | 213eb0168addbe7f314724f01c9f7ddad3ee2673 (diff) | |
parent | 7f367712814cef0e1e132c2c39363cb0c6adb557 (diff) | |
download | mediapointer-dvb-s2-2bd35cda866389fda170f211d63bfd4893a7b464.tar.gz mediapointer-dvb-s2-2bd35cda866389fda170f211d63bfd4893a7b464.tar.bz2 |
merge http://linuxtv.org/hg/~tap/v4l-dvb
From: Mauro Carvalho Chehab <mchehab@infradead.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'v4l/scripts')
-rwxr-xr-x | v4l/scripts/make_kconfig.pl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/v4l/scripts/make_kconfig.pl b/v4l/scripts/make_kconfig.pl index 7cb258d86..e228d38b4 100755 --- a/v4l/scripts/make_kconfig.pl +++ b/v4l/scripts/make_kconfig.pl @@ -14,6 +14,7 @@ my %depmods = (); my ($version, $level, $sublevel, $kernver); my $kernel = shift; +my $kernsrc = shift; my $force_kconfig = shift; my $debug=0; @@ -542,7 +543,7 @@ disable_config('DVB_FE_CUSTOMISE'); disable_config('VIDEO_HELPER_CHIPS_AUTO'); # ACI needs some kernel includes that might not be there -disable_config('SOUND_ACI_MIXER') if (! -e "$kernel/sound/oss/sound_config.h"); +disable_config('SOUND_ACI_MIXER') if (! -e "$kernsrc/sound/oss/sound_config.h"); # Check dependencies my %newconfig = checkdeps(); @@ -595,7 +596,7 @@ if ($force_kconfig==1 || !-e '.config') { # Check for full kernel sources and print a warning sub kernelcheck() { - my $fullkernel="$kernel/fs/fcntl.c"; + my $fullkernel="$kernsrc/fs/fcntl.c"; if (! -e $fullkernel) { print <<"EOF2"; |