Page MenuHomeFreeBSD

D30715.id90693.diff
No OneTemporary

D30715.id90693.diff

Index: share/man/man4/Makefile
===================================================================
--- share/man/man4/Makefile
+++ share/man/man4/Makefile
@@ -897,9 +897,7 @@
MLINKS+=cgem.4 if_cgem.4
.endif
-.if empty(MAN_ARCH)
-__arches= ${MACHINE} ${MACHINE_ARCH} ${MACHINE_CPUARCH}
-.elif ${MAN_ARCH} == "all"
+.if empty(MAN_ARCH) || ${MAN_ARCH} == "all"
__arches= ${:!/bin/sh -c "/bin/ls -d ${.CURDIR}/man4.*"!:E}
.else
__arches= ${MAN_ARCH}
Index: share/man/man4/man4.aarch64/Makefile
===================================================================
--- share/man/man4/man4.aarch64/Makefile
+++ share/man/man4/man4.aarch64/Makefile
@@ -16,6 +16,11 @@
rk_i2c.4 \
rk_pinctrl.4 \
+# Link files to the parent directory
+.for _manpage in ${MAN}
+MLINKS+=${_manpage} ../${_manpage}
+.endfor
+
MANSUBDIR=/aarch64
.include <bsd.prog.mk>
Index: share/man/man4/man4.arm/Makefile
===================================================================
--- share/man/man4/man4.arm/Makefile
+++ share/man/man4/man4.arm/Makefile
@@ -18,6 +18,11 @@
MLINKS= imx_wdog.4 imxwdt.4
MLINKS+= mge.4 if_mge.4
+# Link files to the parent directory
+.for _manpage in ${MAN}
+MLINKS+=${_manpage} ../${_manpage}
+.endfor
+
MANSUBDIR=/arm
.include <bsd.prog.mk>
Index: share/man/man4/man4.i386/Makefile
===================================================================
--- share/man/man4/man4.i386/Makefile
+++ share/man/man4/man4.i386/Makefile
@@ -21,6 +21,11 @@
MLINKS+=pae.4 PAE.4
MLINKS+=sbni.4 if_sbni.4
+# Link files to the parent directory
+.for _manpage in ${MAN}
+MLINKS+=${_manpage} ../${_manpage}
+.endfor
+
MANSUBDIR=/i386
.include <bsd.prog.mk>
Index: share/man/man4/man4.powerpc/Makefile
===================================================================
--- share/man/man4/man4.powerpc/Makefile
+++ share/man/man4/man4.powerpc/Makefile
@@ -15,6 +15,11 @@
snd_davbus.4 \
tsec.4
+# Link files to the parent directory
+.for _manpage in ${MAN}
+MLINKS+=${_manpage} ../${_manpage}
+.endfor
+
MANSUBDIR=/powerpc
.include <bsd.prog.mk>
Index: share/man/man5/make.conf.5
===================================================================
--- share/man/man5/make.conf.5
+++ share/man/man5/make.conf.5
@@ -408,7 +408,7 @@
The special value
.Sq all
installs all available architectures.
-The default is the MACHINE and MACHINE_ARCH being built.
+It is also the default value.
.It Va MODULES_WITH_WORLD
.Pq Vt bool
Set to build modules with the system instead of the kernel.

File Metadata

Mime Type
text/plain
Expires
Tue, Dec 30, 2:01 PM (4 h, 56 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
27385255
Default Alt Text
D30715.id90693.diff (2 KB)

Event Timeline