[PATCH] Fix Ubuntu cleanup routine

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



The attached patch addresses a problem Mike Krufky raised a couple of
weeks ago where some LUM modules were not being removed from Ubuntu
Hardy when using the make install target.

Please let me know if you have any questions.

Thanks,

Devin

-- 
Devin J. Heitmueller
http://www.devinheitmueller.com
AIM: devinheitmueller
Fix Ubuntu module removal script

From: Devin Heitmueller <devin.heitmueller@xxxxxxxxx>

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@xxxxxxxxxxx> for pointing this out and
testing the fix.

Signed-off-by: Devin Heitmueller <devin.heitmueller@xxxxxxxxx>
Index: v4l-dvb/v4l/scripts/make_makefile.pl
===================================================================
--- v4l-dvb.orig/v4l/scripts/make_makefile.pl	2008-11-19 23:29:50.000000000 -0500
+++ v4l-dvb/v4l/scripts/make_makefile.pl	2008-11-19 23:30:08.000000000 -0500
@@ -166,10 +166,10 @@
 	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+$//;
 
_______________________________________________
linux-dvb mailing list
linux-dvb@xxxxxxxxxxx
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb

[Index of Archives]     [Linux Media]     [Video 4 Linux]     [Asterisk]     [Samba]     [Xorg]     [Xfree86]     [Linux USB]

  Powered by Linux