summaryrefslogtreecommitdiff
path: root/v4l/scripts
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2008-11-20 14:53:42 -0200
committerMauro Carvalho Chehab <mchehab@redhat.com>2008-11-20 14:53:42 -0200
commit3748353865894bac0f288d56a7ae881854cd1c87 (patch)
tree3e84e12857c67a9e65ce1dbade6845474e0af612 /v4l/scripts
parent5b08829d068b1cfdf62e0920618a5290101c3d45 (diff)
downloadmediapointer-dvb-s2-3748353865894bac0f288d56a7ae881854cd1c87.tar.gz
mediapointer-dvb-s2-3748353865894bac0f288d56a7ae881854cd1c87.tar.bz2
Fix Ubuntu module removal script
From: Devin Heitmueller <devin.heitmueller@gmail.com> The generated Makefile.media had entries in it's remove list for Ubuntu that were concatenated together. Add a space when concatenating together the various lists (so there is a space between the lists) Thanks for Mike Krufky <mkrufky@linuxtv.org> for pointing this out and testing the fix. Signed-off-by: Devin Heitmueller <devin.heitmueller@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'v4l/scripts')
-rwxr-xr-xv4l/scripts/make_makefile.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/v4l/scripts/make_makefile.pl b/v4l/scripts/make_makefile.pl
index ce6f00516..43c563d47 100755
--- a/v4l/scripts/make_makefile.pl
+++ b/v4l/scripts/make_makefile.pl
@@ -166,10 +166,10 @@ sub removeubuntu()
my $filelist;
while ( my ($dir, $files) = each(%instdir) ) {
- $filelist .= join(' ', keys %$files);
+ $filelist .= ' '. join(' ', keys %$files);
}
while ( my ($dir, $files) = each(%obsolete) ) {
- $filelist .= join(' ', keys %$files);
+ $filelist .= ' ' . join(' ', keys %$files);
}
$filelist =~ s/\s+$//;