diff options
author | Alex Cherepanov <alex.cherepanov@artifex.com> | 2011-06-28 21:55:44 -0400 |
---|---|---|
committer | Alex Cherepanov <alex.cherepanov@artifex.com> | 2011-06-28 21:55:44 -0400 |
commit | c6a8de32823db74a0da27187b7fb049b337c2573 (patch) | |
tree | 189948bc315bcaaee77da4602c6f17eb25880416 /gs/lib | |
parent | 31cb1ff75d4a77ac32854a68f56d973d06b5da10 (diff) |
Bug 692305: Remove -dSAFER from pfbtopfa
Remove -dSAFER flag from pfbtopfa and wftopfa scripts because it
interferes with the the normal operation of Ghostscript and serves
no purpose. No client code is executed by these utilities.
Diffstat (limited to 'gs/lib')
-rwxr-xr-x | gs/lib/pfbtopfa | 2 | ||||
-rwxr-xr-x | gs/lib/pfbtopfa.bat | 2 | ||||
-rwxr-xr-x | gs/lib/wftopfa | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/gs/lib/pfbtopfa b/gs/lib/pfbtopfa index 060fb6746..3aa743cde 100755 --- a/gs/lib/pfbtopfa +++ b/gs/lib/pfbtopfa @@ -22,4 +22,4 @@ else exit 1 fi -exec "$GS_EXECUTABLE" -q -P- -dSAFER -dNODISPLAY -- pfbtopfa.ps "$1" "$outfile" +exec "$GS_EXECUTABLE" -q -P- -dNODISPLAY -- pfbtopfa.ps "$1" "$outfile" diff --git a/gs/lib/pfbtopfa.bat b/gs/lib/pfbtopfa.bat index c7bc5969d..6c5d6829e 100755 --- a/gs/lib/pfbtopfa.bat +++ b/gs/lib/pfbtopfa.bat @@ -7,7 +7,7 @@ if %2/==/ goto usage if not %3/==/ goto usage call "%~dp0gssetgs.bat" -%GSC% -P- -dSAFER -q -dNODISPLAY -- pfbtopfa.ps %1 %2 +%GSC% -P- -q -dNODISPLAY -- pfbtopfa.ps %1 %2 goto end :usage diff --git a/gs/lib/wftopfa b/gs/lib/wftopfa index ef984195c..bda3a0a6d 100755 --- a/gs/lib/wftopfa +++ b/gs/lib/wftopfa @@ -10,4 +10,4 @@ if test ! -x "$gs"; then fi GS_EXECUTABLE="$gs" -exec "$GS_EXECUTABLE" -q -P- -dSAFER -dNODISPLAY -- wftopfa.ps "$@" +exec "$GS_EXECUTABLE" -q -P- -dNODISPLAY -- wftopfa.ps "$@" |