Package: ale
Version: 0.9.0.1-1
Severity: important
Tags: patch

Upstream released a new version fixing a bashism in the ale perl wrapper
for ale-bin.

Running ale under /bin/sh linked to /bin/dash, we got:
        exec: 1: -a: not found

This patch extracted from the new upstream version fixes the current
package:

--- ale-0.9.0.1/ale
+++ ale-0.9.0.1/ale
@@ -77,9 +77,9 @@
        #
 
        if (defined $pager) {
-               exec "exec -a $0 $ale_bin @ARGV | $pager";
+               exec "/bin/bash -c 'exec -a $0 $ale_bin @ARGV |
$pager'";
        } else {
-               exec "exec -a $0 $ale_bin @ARGV";
+               exec "/bin/bash -c 'exec -a $0 $ale_bin @ARGV'";
        }
 
        exit(0);



--

Ruben Molina

Attachment: signature.asc
Description: Esta parte del mensaje está firmada digitalmente

Reply via email to