mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
f2c59d3401
Fixes #153983.
23 lines
562 B
Diff
23 lines
562 B
Diff
diff --git a/ps/gscreator.cpp b/ps/gscreator.cpp
|
|
index 5b84e49..cbb7c25 100644
|
|
--- a/ps/gscreator.cpp
|
|
+++ b/ps/gscreator.cpp
|
|
@@ -101,7 +101,7 @@ static const char *epsprolog =
|
|
"[ ] 0 setdash newpath false setoverprint false setstrokeadjust\n";
|
|
|
|
static const char * gsargs_ps[] = {
|
|
- "gs",
|
|
+ "@gs@",
|
|
"-sDEVICE=png16m",
|
|
"-sOutputFile=-",
|
|
"-dSAFER",
|
|
@@ -120,7 +120,7 @@ static const char * gsargs_ps[] = {
|
|
};
|
|
|
|
static const char * gsargs_eps[] = {
|
|
- "gs",
|
|
+ "@gs@",
|
|
"-sDEVICE=png16m",
|
|
"-sOutputFile=-",
|
|
"-dSAFER",
|