summaryrefslogtreecommitdiff
path: root/v4l/scripts
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@infradead.org>2006-04-26 18:08:40 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2006-04-26 18:08:40 -0300
commit50833699bf64e0d5966fb7fa4142fe7ee189fe8f (patch)
treef7be6584eeb31f4136f3c78fe5ae935a66547008 /v4l/scripts
parent0ec86f485a5553976721525a52d4b85642e6de1c (diff)
downloadmediapointer-dvb-s2-50833699bf64e0d5966fb7fa4142fe7ee189fe8f.tar.gz
mediapointer-dvb-s2-50833699bf64e0d5966fb7fa4142fe7ee189fe8f.tar.bz2
Re-inserting strip at install rule
From: Mauro Carvalho Chehab <mchehab@infradead.org> strip is responsible to remove all debug info from kernel object files. Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'v4l/scripts')
-rwxr-xr-xv4l/scripts/make_makefile.pl5
1 files changed, 2 insertions, 3 deletions
diff --git a/v4l/scripts/make_makefile.pl b/v4l/scripts/make_makefile.pl
index 8371f6a4a..6b8076a4d 100755
--- a/v4l/scripts/make_makefile.pl
+++ b/v4l/scripts/make_makefile.pl
@@ -114,7 +114,8 @@ open_makefile ("../linux/drivers/media/Makefile");
# Creating Install rule
printf OUT "install::\n";
-#printf OUT "\t@strip --strip-debug \$(inst-m)\n\n";
+printf OUT "\t\@echo \"Stripping debug info from files:\"\n";
+printf OUT "\t\@strip --strip-debug \$(inst-m)\n\n";
while ( my ($key, $value) = each(%instdir) ) {
printf OUT "\t\@echo -e \"\\nInstalling \$(KDIR26)/$key files:\"\n";
@@ -160,5 +161,3 @@ if (open OUT,".myconfig") {
} else {
system "make allmodconfig";
}
-
-