Author: Ludovic Rousseau <rousseau@debian.org>
Description: bins: bashism in /bin/sh script
Bug-Debian: http://bugs.debian.org/489542

--- bins-1.1.29.orig/tools/anti_bins
+++ bins-1.1.29/tools/anti_bins
@@ -47,7 +47,7 @@
     exit 2
 fi
 
-if [[ $CONFIGURATION_IS_OK == 0 ]] ; then
+if [ $CONFIGURATION_IS_OK = 0 ] ; then
     echo "Edit this script to set configuration variables."
     exit 1
 fi
--- bins-1.1.29.orig/tools/add_num_prefix
+++ bins-1.1.29/tools/add_num_prefix
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 
 # Add a numeric prefix starting at $1, incrementing by $2 on $3..$n files
 
