diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-01-07 02:55:15 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-01-07 02:55:15 -0500 |
commit | 9ec20f9888ded5ef9c21f91af26e492c958784b9 (patch) | |
tree | 84e7984534dcdf45e38014913a09c41c6e82990a /tests/dimension/strings.sh | |
parent | 2cca3158de0fbb40861a06f76bdd5043ac31f046 (diff) | |
download | dimension-9ec20f9888ded5ef9c21f91af26e492c958784b9.tar.xz |
Make build system more bourne-compatible.
Diffstat (limited to 'tests/dimension/strings.sh')
-rwxr-xr-x | tests/dimension/strings.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/dimension/strings.sh b/tests/dimension/strings.sh index 58e0751..eba9f0f 100755 --- a/tests/dimension/strings.sh +++ b/tests/dimension/strings.sh @@ -20,7 +20,7 @@ ######################################################################### strings=$(${top_builddir}/dimension/dimension --tokenize ${srcdir}/strings.pov) -strings_exp=$(echo -e "((string \"This is a string with escape sequences: \a\b\f\n\r\t!#\v\\\'\"\"))") +strings_exp=$(/bin/echo -e "((string \"This is a string with escape sequences: \a\b\f\n\r\t!#\v\\\'\"\"))") if [ "$strings" != "$strings_exp" ]; then echo "strings.pov tokenized as \"$strings\"" >&2 |