summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/MDV/Distribconf.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MDV/Distribconf.pm b/lib/MDV/Distribconf.pm
index 6e417fa..8695c55 100644
--- a/lib/MDV/Distribconf.pm
+++ b/lib/MDV/Distribconf.pm
@@ -446,7 +446,7 @@ sub getvalue {
last;
};
/^productid$/ and do {
- return join(',', map { "$_=" . $distrib->getvalue(undef, $_, '') }
+ return join(',', map { "$_=" . ($distrib->getvalue(undef, $_) || '') }
qw(vendor distribution type version branch release arch product));
};
/^path$/ and return $media;