[flac-dev] [PATCH] Change test scripts shell to bash, to avoid lack of arithmetic support in dash, which is sh on Ubuntu 10.04
Jesse Weinstein
jesse at wefu.org
Tue Mar 19 19:49:07 PDT 2013
The subject line mostly says it all, but for reference, having #!/bin/sh causes the following error:
arithmetic expression: expecting primary: " % 255 + 1"
---
test/test_flac.sh | 2 +-
test/test_grabbag.sh | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/test/test_flac.sh b/test/test_flac.sh
index 10981c0..257c5ea 100755
--- a/test/test_flac.sh
+++ b/test/test_flac.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
# FLAC - Free Lossless Audio Codec
# Copyright (C) 2001,2002,2003,2004,2005,2006,2007,2008,2009 Josh Coalson
diff --git a/test/test_grabbag.sh b/test/test_grabbag.sh
index 5d9f9d1..959bda5 100755
--- a/test/test_grabbag.sh
+++ b/test/test_grabbag.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
# FLAC - Free Lossless Audio Codec
# Copyright (C) 2001,2002,2003,2004,2005,2006,2007,2008,2009 Josh Coalson
--
1.7.0.4
More information about the flac-dev
mailing list