X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=blobdiff_plain;f=misc%2Ftools%2Fxonotic-map-compiler;h=7a114e5223f045686a15a695e5fbdee2f064bbf6;hp=4f8c83871edcfbb6ee6eab9ca84d9384afcc289c;hb=eeb4e981e777965ddc1791300419030b1187ddb8;hpb=d95dde1cc44139ca75f658225b790e124eac2571 diff --git a/misc/tools/xonotic-map-compiler b/misc/tools/xonotic-map-compiler index 4f8c8387..7a114e52 100755 --- a/misc/tools/xonotic-map-compiler +++ b/misc/tools/xonotic-map-compiler @@ -183,7 +183,7 @@ sub q3map2(@) or die "fork: $!"; if($pid) # parent { - local $SIG{ALRM} = sub { kill $pid; }; + local $SIG{ALRM} = sub { warn "SIGALRM caught\n"; kill $pid; }; alarm $timeout if $timeout; if(waitpid($pid, 0) != $pid) @@ -191,7 +191,7 @@ sub q3map2(@) die "waitpid: did not return our child process $pid: $!"; } alarm 0; - return $? == 0; + return ($? == 0); } else # child {