aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rwxr-xr-xgendistrib1
2 files changed, 4 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 3594768..2f57146 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,6 @@
+- gendistrib:
+ o if "xml-info" is set in media.cfg, pass --xml-info to genhdlist2
+
Version 5.6 - 18 March 2008, by Pascal "Pixel" Rigaux
- gendistrib:
diff --git a/gendistrib b/gendistrib
index 1911ecc..765ae14 100755
--- a/gendistrib
+++ b/gendistrib
@@ -146,6 +146,7 @@ foreach my $e (grep { !$_->{noneedrebuild} } @hdlists) {
$nooutput ? '--quiet' : (),
$nobadrpm ? '--no-bad-rpm' : (),
$nomd5sum || $e->{noneedredomd5} ? "--no-md5sum" : (),
+ $distrib->getvalue($e->{media}, 'xml-info') ? '--xml-info' : (),
-e $file_deps ? "--file-deps $file_deps" : (),
);
my $cmd = "genhdlist2 $options $e->{path}";