Moving from 5.3.2 on RedHat 3.0 to 5.6.2 on RedHat 4.0.
I’ve noticed that tcl now complains when exec-ing a PostScript-to-PDF file conversion utility in /usr/bin. A converted file does get created but tcl reports an error. Running the utility from the commandline shows no error. Both of the output PDFs are viewable but they differ in length by one byte.
This worked OK in 5.3.2 on RedHat 3.0
TIA for thoughts or solutions.
#>ls -l 123.ps
-rw-r–r– 1 hci staff 13762 Apr 3 10:26 123.ps
#>tcl
tcl>exec convert 123.ps aaa.pdf
Error: child process exited abnormally
tcl>exit
#>ls -l aaa.pdf
-rw-rw-r– 1 hci staff 46881 Apr 3 10:38 aaa.pdf
#>convert 123.ps bbb.pdf
#>ls -l [ab]*.pdf
-rw-rw-r– 1 hci staff 46881 Apr 3 10:38 aaa.pdf
-rw-rw-r– 1 hci staff 46880 Apr 3 10:39 bbb.pdf
#>diff aaa.pdf bbb.pdf
Binary files aaa.pdf and bbb.pdf differ