diff options
Diffstat (limited to 'Lib/irix5/torgb.py')
-rwxr-xr-x | Lib/irix5/torgb.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/irix5/torgb.py b/Lib/irix5/torgb.py index 2e340d1..61297d0 100755 --- a/Lib/irix5/torgb.py +++ b/Lib/irix5/torgb.py @@ -18,7 +18,7 @@ t.append('fromppm $IN $OUT', 'ff') table['ppm'] = t t = pipes.Template().init() -t.append('pnmtoppm', '--') +t.append('(PATH=$PATH:/ufs/guido/bin/sgi; exec pnmtoppm)', '--') t.append('fromppm $IN $OUT', 'ff') table['pnm'] = t table['pgm'] = t @@ -36,13 +36,13 @@ table['tiff'] = t t = pipes.Template().init() t.append('rasttopnm', '--') -t.append('pnmtoppm', '--') +t.append('(PATH=$PATH:/ufs/guido/bin/sgi; exec pnmtoppm)', '--') t.append('fromppm $IN $OUT', 'ff') table['rast'] = t t = pipes.Template().init() t.append('djpeg', '--') -t.append('pnmtoppm', '--') +t.append('(PATH=$PATH:/ufs/guido/bin/sgi; exec pnmtoppm)', '--') t.append('fromppm $IN $OUT', 'ff') table['jpeg'] = t |