aboutsummaryrefslogtreecommitdiffstats
path: root/BCD
diff options
context:
space:
mode:
authorAnne Nicolas <ennael@mageia.org>2015-01-13 14:44:36 +0100
committerAnne Nicolas <ennael@mageia.org>2015-01-13 14:44:36 +0100
commit2aa3e03ec1ee303eca309b2aab0598e0c8b49dbf (patch)
tree95c3101fb64f98dc77db0a026d94e7a933a09e97 /BCD
parentb670ce9006dd48df8dfaa6a8ade54b7a20484178 (diff)
downloadbcd-2aa3e03ec1ee303eca309b2aab0598e0c8b49dbf.tar
bcd-2aa3e03ec1ee303eca309b2aab0598e0c8b49dbf.tar.gz
bcd-2aa3e03ec1ee303eca309b2aab0598e0c8b49dbf.tar.bz2
bcd-2aa3e03ec1ee303eca309b2aab0598e0c8b49dbf.tar.xz
bcd-2aa3e03ec1ee303eca309b2aab0598e0c8b49dbf.zip
add variable nameid to use standard name for isos
Diffstat (limited to 'BCD')
-rw-r--r--BCD/Common.pm2
-rw-r--r--BCD/Genisoimage.pm2
2 files changed, 2 insertions, 2 deletions
diff --git a/BCD/Common.pm b/BCD/Common.pm
index d0ab23a..71b6497 100644
--- a/BCD/Common.pm
+++ b/BCD/Common.pm
@@ -13,7 +13,7 @@ use BCD::Bcd qw(:DEFAULT);
our @ISA = qw(Exporter);
our @EXPORT = qw(create_needed_dir check_dir clean_all print_color);
# export all needed var
-our @EXPORT_OK = qw($isoconf $wd $name $arch $file $based_on $version $repo $isodir $builddir $distrib_path $error_color $DISTRIB $THEME $tmp_rpmsrate $NB_FORK $dir_deps @list_of_removed $rpmrc $pwd_file $conf_file $date $urpmqlogs $rpmcheck_list_pkg $file_rpmcheck_log $smartcheck_list_pkg $smartcheck_dir $file_smartcheck_log $chroot_path $support);
+our @EXPORT_OK = qw($nameid $isoconf $wd $name $arch $file $based_on $version $repo $isodir $builddir $distrib_path $error_color $DISTRIB $THEME $tmp_rpmsrate $NB_FORK $dir_deps @list_of_removed $rpmrc $pwd_file $conf_file $date $urpmqlogs $rpmcheck_list_pkg $file_rpmcheck_log $smartcheck_list_pkg $smartcheck_dir $file_smartcheck_log $chroot_path $support);
my $LOG="COMMON -";
my $color = "red";
diff --git a/BCD/Genisoimage.pm b/BCD/Genisoimage.pm
index f410e2d..07d3923 100644
--- a/BCD/Genisoimage.pm
+++ b/BCD/Genisoimage.pm
@@ -2,7 +2,7 @@ package BCD::Genisoimage;
use strict;
use XML::Simple;
-use BCD::Common qw(:DEFAULT $isoconf $wd $name $arch $version $builddir $isodir $error_color $repo $based_on $support);
+use BCD::Common qw(:DEFAULT $nameid $arch $isoconf $wd $name $arch $version $builddir $isodir $error_color $repo $based_on $support);
use BCD::Media qw(:DEFAULT parse_synthesis);
use URPM;