summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2010-01-07 02:55:15 -0500
committerTavian Barnes <tavianator@gmail.com>2010-01-07 02:55:15 -0500
commit9ec20f9888ded5ef9c21f91af26e492c958784b9 (patch)
tree84e7984534dcdf45e38014913a09c41c6e82990a /tests
parent2cca3158de0fbb40861a06f76bdd5043ac31f046 (diff)
downloaddimension-9ec20f9888ded5ef9c21f91af26e492c958784b9.tar.xz
Make build system more bourne-compatible.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/dimension/strings.sh2
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