Search
j0ke.net Open Build Service
>
Projects
>
home:netmax
:
playground
>
kiwi
> kiwi-qemu-img_dbg.diff
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File kiwi-qemu-img_dbg.diff of Package kiwi (Revision 3)
Currently displaying revision
3
,
show latest
--- kiwi/modules/KIWIImage.pm.orig 2015-09-11 14:16:19.362798613 +0200 +++ kiwi/modules/KIWIImage.pm 2015-09-11 14:21:53.185753436 +0200 @@ -3622,7 +3622,7 @@ # loop setup a disk device as file... #------------------------------------------ unlink ($out); - my $data = qxx ("qemu-img create $out $seek 2>&1"); + my $data = qx ("qemu-img create $out $seek 2>&1"); 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 /urs/bin /usr/sbin); + print "@output\n"; $prog = qx (bash -c "type $prog" 2>&1); my $exit = $?; my $code = $exit >> 8;