Hi,

thanks for the report!

On 12/06/2014 01:04 AM, Raphael Geissert wrote:
> I've ran checkbashisms (from the 'devscripts' package) over the whole
> archive and I found that your package has a /bin/sh script that uses a
> "bashism".
> 
> checkbashisms' output:
>> possible bashism in ./usr/bin/sea line 112 (hash):
>>    export PATH; hash -r

I will update and upload the Debian specific patch 09-fix-bashism.patch
as attached.

Roland

Description: Fix bashisms
 In attila/src/attila.sh, there is a bashism in l.196:
  exec -a "$SELF" "$SELF" $*
 therefore using /bin/bash as shell. See also:
 https://wiki.ubuntu.com/DashAsBinSh
 Similarly: sea/src/sea.sh:
 export PATH; hash -r
Author: Roland Stigge <sti...@antcom.de>
Bug-Debian: http://bugs.debian.org/690623

--- alliance-5.0-20120515.orig/attila/src/attila.sh
+++ alliance-5.0-20120515/attila/src/attila.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 #
 # $Id: attila.sh,v 1.27 2012/04/11 13:30:29 alliance Exp $
 #                                                                        
--- alliance-5.0-20120515.orig/sea/src/sea.sh
+++ alliance-5.0-20120515/sea/src/sea.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 #
 # $Id: sea.sh,v 1.6 2005/03/18 12:18:09 jpc Exp $
 #

Reply via email to