mirror of
https://git.yoctoproject.org/poky
synced 2026-02-11 19:23:03 +01:00
[Patches]
KEEP _ignore_arch_directory_: ignore /etc/modprobe.d/arch, not sure reason now.
keep it and to be verified later
REMOVE _module-init-tools-remove-index.patch_: in upstream
NEW _disable_man.patch_: a simpler patch to replace below removed two
REMOVE _manpagesopt_: due to above new patch
REMOVE _no_man_rebuild_: ditto
KEEP _modutils_extension_: poky has its own name convention and thus need such knowledge
in code
[Recipe]
- adjust indention
- remove some old lines like ${S} and EXTRA_OECONF
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
24 lines
1.0 KiB
Diff
24 lines
1.0 KiB
Diff
# disable man page build
|
|
#
|
|
# by Kevin Tian <kevin.tian@intel.com>, 2010-07-21
|
|
|
|
diff --git a/Makefile.am b/Makefile.am
|
|
index 6f83c12..32972a8 100644
|
|
--- a/Makefile.am
|
|
+++ b/Makefile.am
|
|
@@ -39,13 +39,12 @@ modindex_LDADD = $(LDADD) libmodtools.a
|
|
MAN5 = modprobe.conf.5 modules.dep.5 depmod.conf.5 modprobe.d.5
|
|
MAN8 = depmod.8 insmod.8 lsmod.8 rmmod.8 modprobe.8 modinfo.8
|
|
SGML = $(addprefix doc/, $(MAN5:%.5=%.sgml) $(MAN8:%.8=%.sgml))
|
|
-dist_man_MANS = $(MAN5) $(MAN8)
|
|
# If they haven't overridden mandir, fix it (never /man!)
|
|
mandir =$(shell if [ @mandir@ = $(prefix)/man ]; then if [ $(prefix) = / ]; then echo /usr/share/man; else echo $(prefix)/share/man; fi; else echo @mandir@; fi)
|
|
|
|
TESTSUITE := $(shell test -e @srcdir@/tests && find @srcdir@/tests -type f ! -name '*~')
|
|
|
|
-EXTRA_DIST = generate-modprobe.conf FAQ CODING stress_modules.sh install-with-care $(SGML) $(man_MANS) $(TESTSUITE)
|
|
+EXTRA_DIST = generate-modprobe.conf FAQ CODING stress_modules.sh install-with-care
|
|
|
|
sbin_PROGRAMS = insmod modprobe rmmod depmod modinfo
|
|
if BUILD_STATIC_UTILS
|