diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-04-26 18:08:40 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-04-26 18:08:40 -0300 |
commit | 50833699bf64e0d5966fb7fa4142fe7ee189fe8f (patch) | |
tree | f7be6584eeb31f4136f3c78fe5ae935a66547008 | |
parent | 0ec86f485a5553976721525a52d4b85642e6de1c (diff) | |
download | mediapointer-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>
-rwxr-xr-x | v4l/scripts/make_makefile.pl | 5 |
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"; } - - |