浏览代码

dpkg-architecture(1): Fix examples indentation to fit in 80 characters

Guillem Jover 13 年之前
父节点
当前提交
b6fc3054af
共有 1 个文件被更改,包括 9 次插入5 次删除
  1. 9 5
      man/dpkg-architecture.1

+ 9 - 5
man/dpkg-architecture.1

@@ -211,19 +211,20 @@ script. Instead, you should always initialize them using
 which also show how you can improve the cross compilation support in your
 which also show how you can improve the cross compilation support in your
 package:
 package:
 .PP
 .PP
-
 Retrieving the GNU system type and forwarding it to ./configure:
 Retrieving the GNU system type and forwarding it to ./configure:
-.IP
+.PP
+.RS 4
 .nf
 .nf
 DEB_BUILD_GNU_TYPE := $(shell dpkg\-architecture \-qDEB_BUILD_GNU_TYPE)
 DEB_BUILD_GNU_TYPE := $(shell dpkg\-architecture \-qDEB_BUILD_GNU_TYPE)
 DEB_HOST_GNU_TYPE := $(shell dpkg\-architecture \-qDEB_HOST_GNU_TYPE)
 DEB_HOST_GNU_TYPE := $(shell dpkg\-architecture \-qDEB_HOST_GNU_TYPE)
 [...]
 [...]
 configure \-\-build=$(DEB_BUILD_GNU_TYPE) \-\-host=$(DEB_HOST_GNU_TYPE)
 configure \-\-build=$(DEB_BUILD_GNU_TYPE) \-\-host=$(DEB_HOST_GNU_TYPE)
 .fi
 .fi
+.RE
 .PP
 .PP
-
 Doing something only for a specific architecture:
 Doing something only for a specific architecture:
-.IP
+.PP
+.RS 4
 .nf
 .nf
 DEB_HOST_ARCH := $(shell dpkg\-architecture \-qDEB_HOST_ARCH)
 DEB_HOST_ARCH := $(shell dpkg\-architecture \-qDEB_HOST_ARCH)
 
 
@@ -231,13 +232,15 @@ ifeq ($(DEB_HOST_ARCH),alpha)
   [...]
   [...]
 endif
 endif
 .fi
 .fi
+.RE
 .PP
 .PP
 or if you only need to check the CPU or OS type, use the
 or if you only need to check the CPU or OS type, use the
 \fBDEB_HOST_ARCH_CPU\fP or \fBDEB_HOST_ARCH_OS\fP variables.
 \fBDEB_HOST_ARCH_CPU\fP or \fBDEB_HOST_ARCH_OS\fP variables.
 .PP
 .PP
 Note that you can also rely on an external Makefile snippet to properly
 Note that you can also rely on an external Makefile snippet to properly
 set all the variables that \fBdpkg\-architecture\fP can provide:
 set all the variables that \fBdpkg\-architecture\fP can provide:
-.IP
+.PP
+.RS 4
 .nf
 .nf
 include /usr/share/dpkg/architecture.mk
 include /usr/share/dpkg/architecture.mk
 
 
@@ -245,6 +248,7 @@ ifeq ($(DEB_HOST_ARCH),alpha)
   [...]
   [...]
 endif
 endif
 .fi
 .fi
+.RE
 .PP
 .PP
 In any case, you should never use \fBdpkg \-\-print\-architecture\fP to get
 In any case, you should never use \fBdpkg \-\-print\-architecture\fP to get
 architecture information during a package build.
 architecture information during a package build.