summaryrefslogtreecommitdiff
path: root/packaging/SGI/psfixes.pl
diff options
context:
space:
mode:
authorHerb Lewis <herb@samba.org>1998-01-14 07:17:37 +0000
committerHerb Lewis <herb@samba.org>1998-01-14 07:17:37 +0000
commit5dd1eb4e32f95bd1d8f5da3ca30c7a0fc4ef87c0 (patch)
tree58bfa99075c698a0690a16c9ed65c57c3a69ba91 /packaging/SGI/psfixes.pl
parent195c36a5d97e46a7a37824fe34065d4be58f73b3 (diff)
downloadsamba-5dd1eb4e32f95bd1d8f5da3ca30c7a0fc4ef87c0.tar.gz
samba-5dd1eb4e32f95bd1d8f5da3ca30c7a0fc4ef87c0.tar.bz2
samba-5dd1eb4e32f95bd1d8f5da3ca30c7a0fc4ef87c0.zip
README describe inst package version number correctly
idb.pl fix some permission problems with shell scripts sambalp new script supplied by Alan Stebbens that can run setuid to properly print banner page for known users. smb.conf use new sambalp by default. psfixes.pl remove - now handled by sambalp (This used to be commit 129aab955c069206109461e31f2b0244d8586908)
Diffstat (limited to 'packaging/SGI/psfixes.pl')
-rwxr-xr-xpackaging/SGI/psfixes.pl30
1 files changed, 0 insertions, 30 deletions
diff --git a/packaging/SGI/psfixes.pl b/packaging/SGI/psfixes.pl
deleted file mode 100755
index 13e9bdb0a8..0000000000
--- a/packaging/SGI/psfixes.pl
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/usr/bin/perl
-
-while (<>) {
-# strip any ctrl-d's
- $_ =~ s/^//;
-# get rid of any non-postscript commands
- if (/^%/) {
- do {
- $_ = <>;
- } until ( /^%/ ) || eof() ;
- if (! eof()) {
- print;
- }
- }
-# fix bug in long titles from MS Word
- elsif (/^%%Title:/) {
- s/. $/ /;
- print;
- }
-# remove VM test
- elsif (/^\/VM\?/) {
- print "/VM? { pop } bind def \n";
- do {
- $_ = <>;
- } until (/def /) || eof() ;
- }
- else {
- print;
- }
-}