commit: f66bb453a1468dc526853ab4a0c24babc6c5e413
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 1 22:54:16 2014 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Tue Jul 1 22:54:16 2014 +0000
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/linux-patches.git;a=commit;h=f66bb453
More website gerneration fixes
---
web/gentoo_sources_web.pm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/web/gentoo_sources_web.pm b/web/gentoo_sources_web.pm
index f0b053b..6510c21 100644
--- a/web/gentoo_sources_web.pm
+++ b/web/gentoo_sources_web.pm
@@ -208,6 +208,7 @@ sub _get_patch_list {
# checkout tag
$cmd = 'git -C /tmp/linux-patches checkout '.$tag;
+ $output = `$cmd`;
$cmd = 'cat /tmp/linux-patches/0000_README';
my @readme_lines = `$cmd`;
@@ -216,7 +217,7 @@ sub _get_patch_list {
foreach (@readme_lines) {
chomp;
-
+
if (/^[Pp]atch:[ \t]+(.*)$/) {
printf ("patch :$1\n");
$count++;