summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Leonhardt <leo@debian.org>2020-11-01 12:14:56 +0100
committerCarsten Leonhardt <leo@debian.org>2020-11-01 12:14:56 +0100
commit95f7ce78ed98b294aa3f5d0d6f5f6bf0a63439d0 (patch)
tree8cd12747eca137249153ce42d4e780d4e8cc9912
parent70016baf3fe2a800acc66863d63d40b4239ad409 (diff)
Fix manpage problem found by lintian
An apostrophe at the beginning of the line is a command for (g)roff, so it must be either escaped or moved away from the beginning of the line to have a real apostrophe. The sequence \' doesn't stand for an apostrophe, however, but an acute accent. There are escaped sequences for an apostrophe, but they don't seem to be portable. Therefore, the easiest solution is to move the apostrophe away from the beginning of the line.
-rw-r--r--debian/patches/006-fix-quotation-in-manpage26
-rw-r--r--debian/patches/series1
2 files changed, 27 insertions, 0 deletions
diff --git a/debian/patches/006-fix-quotation-in-manpage b/debian/patches/006-fix-quotation-in-manpage
new file mode 100644
index 0000000..b8e9243
--- /dev/null
+++ b/debian/patches/006-fix-quotation-in-manpage
@@ -0,0 +1,26 @@
+Description: Fix manpage quotation found by lintian
+Author: Carsten Leonhardt <leo@debian.org>
+Last-Update: 2020-10-31
+
+An apostrophe at the beginning of the line is a command for (g)roff,
+so it must be either escaped or moved away from the beginning of the
+line to have a real apostrophe. The sequence \' doesn't stand for an
+apostrophe, however, but an acute accent. There are escaped sequences
+for an apostrophe, but they don't seem to be portable. Therefore, the
+easiest solution is to move the apostrophe away from the beginning of
+the line.
+
+
+--- a/scsitape.1
++++ b/scsitape.1
+@@ -162,8 +162,8 @@
+ attempt to intermingle scsitape commands with native tape driver
+ operations. Note that BRU 16.1 for Solaris (and possibly others, but
+ Solaris I know about) will have a 'scsi' keyword to bypass the
+-native tape driver and write via direct uscsi commands, so if you use
+-\'scsitape\' to bypass the flaws of the native Solaris driver, you can use
++native tape driver and write via direct uscsi commands, so if you
++use 'scsitape' to bypass the flaws of the native Solaris driver, you can use
+ BRU 16.1 to write your actual tape archives. (Assuming that BRU 16.1
+ has been released at the time that you read this).
+
diff --git a/debian/patches/series b/debian/patches/series
index 2ef608e..10e166d 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -3,3 +3,4 @@
003-fix-spelling
004-fix-destdir
005-remove-argc-output
+006-fix-quotation-in-manpage