summaryrefslogtreecommitdiffstats
path: root/packaging/SGI/psfixes.pl
diff options
context:
space:
mode:
Diffstat (limited to 'packaging/SGI/psfixes.pl')
-rwxr-xr-xpackaging/SGI/psfixes.pl26
1 files changed, 0 insertions, 26 deletions
diff --git a/packaging/SGI/psfixes.pl b/packaging/SGI/psfixes.pl
deleted file mode 100755
index 4ed9e16f7ec..00000000000
--- a/packaging/SGI/psfixes.pl
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/usr/bin/perl
-
-$found_vm = 0;
-
-while (<>) {
- if (not $found_vm) {
- if (not /^%/) {
- if (/^%%Title:/) {
- s/. $/ /;
- print;
- }
- elsif (/^\/VM?/) {
- print "/VM? { pop } bind def \n";
- $found_vm = 1;
- }
- else {
- print;
- }
- }
- }
- else {
- if (/def /) {
- $found_vm = 0;
- }
- }
-}