diff options
author | Karl Berry <karl@freefriends.org> | 2008-07-07 00:40:45 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-07-07 00:40:45 +0000 |
commit | fa0cd1eda7224e7748735971ce592b3945d8869f (patch) | |
tree | cd51ddbe58c28beaa7159dbbfdb0de5864e630bf /Master/bin/powerpc-darwin/fixscribeps | |
parent | 174072ff0da094899d051817c5a4c184fd4ca0a5 (diff) |
remove powerpc/i386-darwin binaries
git-svn-id: svn://tug.org/texlive/trunk@9318 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/powerpc-darwin/fixscribeps')
-rwxr-xr-x | Master/bin/powerpc-darwin/fixscribeps | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Master/bin/powerpc-darwin/fixscribeps b/Master/bin/powerpc-darwin/fixscribeps deleted file mode 100755 index bd4e9a0e3e0..00000000000 --- a/Master/bin/powerpc-darwin/fixscribeps +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env perl -# fixscribeps: get conforming PostScript out of Scribe -# -# Copyright (C) Angus J. C. Duggan 1991-1995 -# See file LICENSE for details. - -$inepsf = 0; -$epsfn = 0; -while (<>) { - if (/^([0-9]+ [0-9]+ [0-9]+ PB) (%!.*)/) { - print "$1\n%%BeginDocument: Scribe-EPSF $epsfn 0\n$2\n"; - $inepsf++; - } elsif (/^ PE/ && $inepsf) { - print "%%EndDocument\n", $_; - } else { - print $_; - } -} - |