summaryrefslogtreecommitdiff
path: root/debian/patches/0002-Make-sure-examples-have-shebangs.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/0002-Make-sure-examples-have-shebangs.patch')
-rw-r--r--debian/patches/0002-Make-sure-examples-have-shebangs.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/debian/patches/0002-Make-sure-examples-have-shebangs.patch b/debian/patches/0002-Make-sure-examples-have-shebangs.patch
deleted file mode 100644
index 091afb2..0000000
--- a/debian/patches/0002-Make-sure-examples-have-shebangs.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From 4eaa72f394ce83cee564c3d736127296723f642b Mon Sep 17 00:00:00 2001
-From: Chad Walstrom <chewie@debian.org>
-Date: Sat, 10 Feb 2018 16:45:12 +0100
-Subject: Make sure examples have shebangs
-
-Last-Update: 2004-11-12
----
- sample_scripts/lprbw | 1 +
- sample_scripts/lprcolor | 1 +
- sample_scripts/lpreco | 1 +
- 3 files changed, 3 insertions(+)
-
-diff --git a/sample_scripts/lprbw b/sample_scripts/lprbw
-index 17d281a..2311dd2 100755
---- a/sample_scripts/lprbw
-+++ b/sample_scripts/lprbw
-@@ -1,3 +1,4 @@
-+#!/bin/sh
- cat $1 | \
- gs -sDEVICE=pbmraw -q -sPAPERSIZE=a4 -dNOPAUSE -r600 -sOutputFile=- - | \
- pnm2ppa --bw --eco $2 $3 $4 $5 -i - -o /dev/lp0
-diff --git a/sample_scripts/lprcolor b/sample_scripts/lprcolor
-index b745b5b..9ee223f 100755
---- a/sample_scripts/lprcolor
-+++ b/sample_scripts/lprcolor
-@@ -1,3 +1,4 @@
-+#!/bin/sh
- cat $1 | \
- gs -sDEVICE=ppmraw -q -sPAPERSIZE=a4 -dNOPAUSE -r600 -sOutputFile=- - | \
- pnm2ppa $2 $3 $4 $5 -i - -o /dev/lp0
-diff --git a/sample_scripts/lpreco b/sample_scripts/lpreco
-index 450cbe3..7e0674e 100755
---- a/sample_scripts/lpreco
-+++ b/sample_scripts/lpreco
-@@ -1,3 +1,4 @@
-+#!/bin/sh
- cat $1 | \
- gs -sDEVICE=ppmraw -q -sPAPERSIZE=a4 -dNOPAUSE -r600 -sOutputFile=- - | \
- pnm2ppa --eco $2 $3 $4 $5 -i - -o /dev/lp0