summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2011-07-02 16:03:04 -0700
committerRoland McGrath <roland@hack.frob.com>2011-07-02 16:03:04 -0700
commit84f9ea0f73dbb3946294acf132f03ab437befc73 (patch)
tree60e931138270a2ced2aeabc5e8b38f7d0258f347 /Makefile
parentea5ee9f73d7b9d143d04e6b91020fe9dc7b18a40 (diff)
Generate testrun.sh to use relative directory names.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 287f671c17..6f2dfa66fa 100644
--- a/Makefile
+++ b/Makefile
@@ -163,8 +163,10 @@ endif
$(common-objpfx)testrun.sh: $(common-objpfx)config.make \
$(..)Makeconfig $(..)Makefile
(echo '#!/bin/sh'; \
- echo "GCONV_PATH='$(common-objpfx)iconvdata' \\"; \
- echo 'exec $(run-program-prefix) $${1+"$$@"}'; \
+ echo 'builddir=`dirname "$$0"`'; \
+ echo 'GCONV_PATH="$${builddir}/iconvdata" \'; \
+ echo 'exec $(subst $(common-objdir),"$${builddir}",\
+ $(run-program-prefix)) $${1+"$$@"}'; \
) > $@T
chmod a+x $@T
mv -f $@T $@