summaryrefslogtreecommitdiff
path: root/sys/src/cmd/spell
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@gmx.de>2013-10-26 20:22:01 +0200
committercinap_lenrek <cinap_lenrek@gmx.de>2013-10-26 20:22:01 +0200
commit4a9f900726e530e55506974b8ec718125f78a61b (patch)
treea2cada0148d4408f76c9331339ee2881d6d23e80 /sys/src/cmd/spell
parent0d378e905e4df6266d9fc9243e7ed735e12d839b (diff)
mkfiles: do not rely on path containing the . element
when executing generated binaries and helper scripts, always execute them as ./name instead of relying that path contsins the dot.
Diffstat (limited to 'sys/src/cmd/spell')
-rw-r--r--sys/src/cmd/spell/mkfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/src/cmd/spell/mkfile b/sys/src/cmd/spell/mkfile
index 09f2cdee5..013a82eda 100644
--- a/sys/src/cmd/spell/mkfile
+++ b/sys/src/cmd/spell/mkfile
@@ -16,10 +16,10 @@ lib: amspell brspell
for (i in $prereq) cp $i /sys/lib/$i
brspell: $cpuobjtype.pcode list british local stop
- $cpuobjtype.pcode list british local stop >$target
+ ./$cpuobjtype.pcode list british local stop >$target
amspell: $cpuobjtype.pcode list american local stop
- $cpuobjtype.pcode list american local stop >$target
+ ./$cpuobjtype.pcode list american local stop >$target
$cpuobjtype.pcode: pcode.c $HFILES
objtype=$cputype