diff options
author | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-10-26 20:22:01 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-10-26 20:22:01 +0200 |
commit | 4a9f900726e530e55506974b8ec718125f78a61b (patch) | |
tree | a2cada0148d4408f76c9331339ee2881d6d23e80 /sys/src/cmd/jpg | |
parent | 0d378e905e4df6266d9fc9243e7ed735e12d839b (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/jpg')
-rw-r--r-- | sys/src/cmd/jpg/mkfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/src/cmd/jpg/mkfile b/sys/src/cmd/jpg/mkfile index 5a8fc085f..723ae39ec 100644 --- a/sys/src/cmd/jpg/mkfile +++ b/sys/src/cmd/jpg/mkfile @@ -68,12 +68,12 @@ torgbv.$O: ycbcr.h rgbv.h ycbcr.h: rgbycc.c $c^c rgbycc.c $c^l -o $c.rgbycc rgbycc.$c - $c.rgbycc > ycbcr.h + ./$c.rgbycc > ycbcr.h rgbv.h: rgbrgbv.c $c^c rgbrgbv.c $c^l -o $c.rgbrgbv rgbrgbv.$c - $c.rgbrgbv > rgbv.h + ./$c.rgbrgbv > rgbv.h nuke:V: nuke-headers |