From: gdt Date: Wed, 4 Oct 2006 17:20:15 +0000 (+0000) Subject: Portability fixes: X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=d1f870c0f848711761d429aa912e5ebfd2d1592a;hp=823ce5ceaa54bea679228e60569c8b43044fe28a;p=debian%2Fgnuradio Portability fixes: Use /bin/sh instead of /bin/bash. Use = instead of == with test. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3708 221aa14e-8319-0410-a670-987f0aec2ac5 --- diff --git a/dtools/bin/check-tarball-h-files b/dtools/bin/check-tarball-h-files index 1f808cb0..dae7592d 100755 --- a/dtools/bin/check-tarball-h-files +++ b/dtools/bin/check-tarball-h-files @@ -1,7 +1,7 @@ -#!/bin/bash +#!/bin/sh tarball=$1 -if [ "x$tarball" == "x" ] +if [ "x$tarball" = "x" ] then echo "usage: $0 tarball" 1>&2 exit 1