From 5dd1eb4e32f95bd1d8f5da3ca30c7a0fc4ef87c0 Mon Sep 17 00:00:00 2001 From: Herb Lewis Date: Wed, 14 Jan 1998 07:17:37 +0000 Subject: 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) --- packaging/SGI/psfixes.pl | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100755 packaging/SGI/psfixes.pl (limited to 'packaging/SGI/psfixes.pl') 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; - } -} -- cgit