diff options
| author | Sjoerd Mullender <sjoerd@acm.org> | 1993-10-11 12:39:15 +0000 |
|---|---|---|
| committer | Sjoerd Mullender <sjoerd@acm.org> | 1993-10-11 12:39:15 +0000 |
| commit | 35fe6ec4cf6e192829a5bd28c080761157258e3e (patch) | |
| tree | 9cbbed70976d8a493bde1865cb285b8bf3b7c0d0 /Lib/plat-irix5/torgb.py | |
| parent | be80e0e83e80ef60d6d6401e5af765debddcb1f4 (diff) | |
| download | cpython-git-35fe6ec4cf6e192829a5bd28c080761157258e3e.tar.gz | |
Not everyone has Guido's bin in his/her PATH...
Diffstat (limited to 'Lib/plat-irix5/torgb.py')
| -rwxr-xr-x | Lib/plat-irix5/torgb.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/plat-irix5/torgb.py b/Lib/plat-irix5/torgb.py index 2e340d1751..61297d0c7b 100755 --- a/Lib/plat-irix5/torgb.py +++ b/Lib/plat-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 |
