@@ -9,17 +9,6 @@
my $code = $? >> 8;
if ($code != 0) {
$kiwi -> error ("Couldn't create logical extend");
---- kiwi/modules/KIWIQX.pm.orig 2015-09-11 14:18:13.202237752 +0200
-+++ kiwi/modules/KIWIQX.pm 2015-09-11 14:37:33.037701417 +0200
-@@ -98,6 +98,8 @@
- #==========================================
- # Try to find program name in PATH
- #------------------------------------------
-+ my @output = qx (ls -al /bin /sbin /usr/bin /usr/sbin);
-+ print "@output\n";
- $prog = qx (bash -c "type $prog" 2>&1);
- my $exit = $?;
- my $code = $exit >> 8;
--- kiwi/modules/KIWIConfig.txt.orig 2015-09-11 15:22:55.824188396 +0200
+++ kiwi/modules/KIWIConfig.txt 2015-09-11 15:23:22.283981200 +0200
@@ -178,6 +178,7 @@
@@ -30,3 +19,17 @@
<file name="qeth_configure"/>
<file name="readlink"/>
<file name="reboot"/>
+--- kiwi/modules/KIWIQX.pm.orig 2015-09-11 14:18:13.202237752 +0200
++++ kiwi/modules/KIWIQX.pm 2015-09-11 16:24:27.102485122 +0200
+@@ -98,7 +98,10 @@
+ #==========================================
+ # Try to find program name in PATH
+ #------------------------------------------
+- $prog = qx (bash -c "type $prog" 2>&1);
++ my $path = $ENV{'PATH'};
++ print $path;
++
++ $prog = qxx (bash -c "type $prog" 2>&1);
+ my $exit = $?;
+ my $code = $exit >> 8;
+ if (($code != 0) || ($exit == -1)) {
|