From 6eb0a2ea8b788a760be6739947304802b0a2cd05 Mon Sep 17 00:00:00 2001 From: Michael Buesch Date: Tue, 21 Sep 2010 14:02:00 +0200 Subject: [PATCH] assembler: Make wrapper script posix shell compliant. Signed-off-by: Michael Buesch --- assembler/b43-asm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assembler/b43-asm b/assembler/b43-asm index 9585b1c..79d5e5a 100755 --- a/assembler/b43-asm +++ b/assembler/b43-asm @@ -1,8 +1,8 @@ -#!/bin/bash +#!/bin/sh # # b43-asm preprocessing frontend # -# Copyright (c) 2007 Michael Buesch +# Copyright (c) 2010 Michael Buesch # Licensed under the GNU/GPL version 2. # @@ -42,7 +42,7 @@ outfile="$1" shift cpp_args= -if [ "$1" == "--cpp-args" ]; then +if [ "$1" = "--cpp-args" ]; then shift while [ "$1" != "--" ]; do if [ $# -eq 0 ]; then -- 2.31.1