about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-10-31 09:07:10 +0000
committerEric Wong <normalperson@yhbt.net>2009-10-31 12:56:51 -0700
commit5af60d002c0b708b169b76973424a33e7d0928dd (patch)
tree227dfc9350fc5f93f13afa7a394e964a6f6c4da2
parent8d7fe29b5d78fdf8fd227898a9290fa526983eac (diff)
downloadrainbows-5af60d002c0b708b169b76973424a33e7d0928dd.tar.gz
It's not portable to FreeBSD 7.2 /bin/sh
-rw-r--r--t/GNUmakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/GNUmakefile b/t/GNUmakefile
index 97f1f82..8c8ed84 100644
--- a/t/GNUmakefile
+++ b/t/GNUmakefile
@@ -82,7 +82,7 @@ $(deps): dep_bin = $(lastword $(subst +, ,$@))
 $(deps):
         @which $(dep_bin) > $@.$(pid) 2>/dev/null || :
         @test -s $@.$(pid) || \
-          { echo >&2 "E `$(dep_bin)' not found in PATH=$(PATH)"; exit 1; }
+          { echo >&2 "E '$(dep_bin)' not found in PATH=$(PATH)"; exit 1; }
         @mv $@.$(pid) $@
 dep: $(deps)