Author: guillem
Date: 2006-05-04 10:56:34 +0000 (Thu, 04 May 2006)
New Revision: 281

Modified:
   trunk/debian/changelog
   trunk/man/C/dpkg-architecture.1
   trunk/man/C/dpkg-divert.8
   trunk/man/C/dpkg-statoverride.8
   trunk/man/ChangeLog
Log:
Escape hyphens in man pages.


Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog      2006-05-04 10:56:06 UTC (rev 280)
+++ trunk/debian/changelog      2006-05-04 10:56:34 UTC (rev 281)
@@ -55,6 +55,7 @@
     when checking if the locking error was due to an already existing
     file, which is locale dependent, and die accordingly. Based on a patch
     by Nicolas François. Closes: #199204, #210781
+  * Escape hyphens in man pages.
 
  -- Bart Cornelis (cobaco) <[EMAIL PROTECTED]>  Thu,  4 May 2006 10:36:12 +0200
 

Modified: trunk/man/C/dpkg-architecture.1
===================================================================
--- trunk/man/C/dpkg-architecture.1     2006-05-04 10:56:06 UTC (rev 280)
+++ trunk/man/C/dpkg-architecture.1     2006-05-04 10:56:34 UTC (rev 281)
@@ -1,4 +1,4 @@
-.TH dpkg\-architecture 1 "2006-02-28" "Debian Project" "dpkg utilities"
+.TH dpkg\-architecture 1 "2006-05-04" "Debian Project" "dpkg utilities"
 .SH "NAME"
 dpkg\-architecture \- set and determine the architecture for package building
 .
@@ -187,18 +187,18 @@
 dpkg-dev by using the following code:
 .IP
 .nf
-DEB_HOST_ARCH_CPU := $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU 2>/dev/null)
-DEB_HOST_ARCH_OS := $(shell dpkg-architecture -qDEB_HOST_ARCH_OS 2>/dev/null)
+DEB_HOST_ARCH_CPU := $(shell dpkg\-architecture \-qDEB_HOST_ARCH_CPU 
2>/dev/null)
+DEB_HOST_ARCH_OS := $(shell dpkg\-architecture \-qDEB_HOST_ARCH_OS 2>/dev/null)
 
-# Take account of old dpkg-architecture output.
+# Take account of old dpkg\-architecture output.
 ifeq ($(DEB_HOST_ARCH_CPU),)
-  DEB_HOST_ARCH_CPU := $(shell dpkg-architecture -qDEB_HOST_GNU_CPU)
+  DEB_HOST_ARCH_CPU := $(shell dpkg\-architecture \-qDEB_HOST_GNU_CPU)
   ifeq ($(DEB_HOST_ARCH_CPU),x86_64)
     DEB_HOST_ARCH_CPU := amd64
   endif
 endif
 ifeq ($(DEB_HOST_ARCH_OS),)
-  DEB_HOST_ARCH_OS := $(subst -gnu,,$(shell dpkg-architecture 
-qDEB_HOST_GNU_SYSTEM))
+  DEB_HOST_ARCH_OS := $(subst \-gnu,,$(shell dpkg\-architecture 
\-qDEB_HOST_GNU_SYSTEM))
   ifeq ($(DEB_HOST_ARCH_OS),gnu)
     DEB_HOST_ARCH_OS := hurd
   endif

Modified: trunk/man/C/dpkg-divert.8
===================================================================
--- trunk/man/C/dpkg-divert.8   2006-05-04 10:56:06 UTC (rev 280)
+++ trunk/man/C/dpkg-divert.8   2006-05-04 10:56:34 UTC (rev 281)
@@ -1,4 +1,4 @@
-.TH dpkg\-divert 8 "2006-02-28" "Debian Project" "dpkg utilities"
+.TH dpkg\-divert 8 "2006-05-04" "Debian Project" "dpkg utilities"
 .SH NAME
 dpkg\-divert - override a package's version of a file
 .
@@ -87,21 +87,21 @@
 To divert all copies of a \fI/usr/bin/example.foo\fR to \fI/usr/bin/example\fR,
 performing the rename if required:
 .HP
-dpkg-divert --divert /usr/bin/example --rename /usr/bin/example.foo
+dpkg-divert \-\-divert /usr/bin/example \-\-rename /usr/bin/example.foo
 .PP
 To remove that diversion:
 .HP
-dpkg-divert --rename --remove /usr/bin/example.foo
+dpkg-divert \-\-rename \-\-remove /usr/bin/example.foo
 
 .PP
 To divert any package trying to install \fI/usr/bin/example\fR to
 \fI/usr/bin/example.foo\fR, except your own \fIwibble\fR package:
 .HP
-dpkg-divert --package wibble --divert /usr/bin/example.foo --rename 
/usr/bin/example
+dpkg-divert \-\-package wibble \-\-divert /usr/bin/example.foo \-\-rename 
/usr/bin/example
 .PP
 To remove that diversion:
 .HP
-dpkg-divert --package wibble --rename --remove /usr/bin/example
+dpkg-divert \-\-package wibble \-\-rename \-\-remove /usr/bin/example
 .
 .SH FILES
 .TP

Modified: trunk/man/C/dpkg-statoverride.8
===================================================================
--- trunk/man/C/dpkg-statoverride.8     2006-05-04 10:56:06 UTC (rev 280)
+++ trunk/man/C/dpkg-statoverride.8     2006-05-04 10:56:34 UTC (rev 281)
@@ -1,4 +1,4 @@
-.TH dpkg\-statoverride 8 "2006-02-28" "Debian project" "dpkg utilities"
+.TH dpkg\-statoverride 8 "2006-05-04" "Debian project" "dpkg utilities"
 .SH NAME
 dpkg\-statoverride - override ownership and mode of files
 .
@@ -75,7 +75,7 @@
 important to dpkg, such as `status' or `available'.
 .br
 Note: dpkg\-statoverride preserves the old copy of this file, with
-extension "-old", before replacing it with the new one.
+extension "\-old", before replacing it with the new one.
 .
 .SH SEE ALSO
 .BR dpkg (1).

Modified: trunk/man/ChangeLog
===================================================================
--- trunk/man/ChangeLog 2006-05-04 10:56:06 UTC (rev 280)
+++ trunk/man/ChangeLog 2006-05-04 10:56:34 UTC (rev 281)
@@ -1,3 +1,9 @@
+2006-05-04  Guillem Jover  <[EMAIL PROTECTED]>
+
+       * C/dpkg-divert.8: Escape hyphens used in command line.
+       * C/dpkg-architecture.1: Likewise.
+       * C/dpkg-statoverride.8: Likewise.
+
 2006-05-02  Guillem Jover  <[EMAIL PROTECTED]>
 
        * C/dpkg-source.1: Rename dpkg:UpstreamVersion to


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to