From: cliffw Date: Wed, 1 Nov 2006 15:34:50 +0000 (+0000) Subject: Changed quotes for newer bash X-Git-Tag: v1_7_100~398 X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=commitdiff_plain;h=250949e95edf96661be57a6140efc1abfa3dfb2b;hp=43e9bd2d8fd5af386b475a6e451e438489d38efc Changed quotes for newer bash --- diff --git a/lustre-iokit/autogen.sh b/lustre-iokit/autogen.sh index fddf52d..37f4a15 100644 --- a/lustre-iokit/autogen.sh +++ b/lustre-iokit/autogen.sh @@ -1,14 +1,14 @@ #!/bin/sh fatal() { - local msg=$1 + local msg="$1" echo "FATAL: $msg" exit 1 } run_cmd() { - local cmd=$1 + local cmd="$1" echo "Running $cmd..." $cmd || fatal "$cmd failed!"