| From 51d661ff33bb254d7b335a9c87acf5c6e7a94192 Mon Sep 17 00:00:00 2001 |
| From: Hongxu Jia <hongxu.jia@windriver.com> |
| Date: Tue, 31 Jul 2018 15:08:34 +0800 |
| Subject: [PATCH] do not build manual |
| |
| On some host (ubuntu 1404), build manual failed. |
| ... |
| ./tools/man-generator --primary lvscan lvscan.8_des |
| Failed to stat description file lvscan.8_des. |
| ... |
| |
| Do not build man to workaround the issue. |
| |
| Upstream-Status: Pending |
| |
| Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> |
| --- |
| Makefile.in | 6 +++--- |
| configure.ac | 1 - |
| 2 files changed, 3 insertions(+), 4 deletions(-) |
| |
| diff --git a/Makefile.in b/Makefile.in |
| index e2f5a84..acf31e5 100644 |
| --- a/Makefile.in |
| +++ b/Makefile.in |
| @@ -18,7 +18,7 @@ top_builddir = @top_builddir@ |
| abs_top_builddir = @abs_top_builddir@ |
| abs_top_srcdir = @abs_top_srcdir@ |
| |
| -SUBDIRS = conf daemons include lib libdaemon libdm man scripts device_mapper tools |
| +SUBDIRS = conf daemons include lib libdaemon libdm scripts device_mapper tools |
| |
| ifeq ("@UDEV_RULES@", "yes") |
| SUBDIRS += udev |
| @@ -41,7 +41,7 @@ ifeq ($(MAKECMDGOALS),clean) |
| endif |
| # FIXME Should use intermediate Makefiles here! |
| ifeq ($(MAKECMDGOALS),distclean) |
| - SUBDIRS = conf include man test scripts \ |
| + SUBDIRS = conf include test scripts \ |
| libdaemon lib tools daemons libdm \ |
| udev po liblvm python device_mapper |
| tools.distclean: test.distclean |
| @@ -71,7 +71,7 @@ liblvm.device-mapper: include.device-mapper |
| daemons.device-mapper: libdm.device-mapper |
| tools.device-mapper: libdm.device-mapper |
| scripts.device-mapper: include.device-mapper |
| -device-mapper: tools.device-mapper daemons.device-mapper man.device-mapper |
| +device-mapper: tools.device-mapper daemons.device-mapper |
| |
| ifeq ("@INTL@", "yes") |
| lib.pofile: include.pofile |
| diff --git a/configure.ac b/configure.ac |
| index aa374ea..5a92cba 100644 |
| --- a/configure.ac |
| +++ b/configure.ac |
| @@ -2124,7 +2124,6 @@ libdm/Makefile |
| libdm/libdevmapper.pc |
| liblvm/Makefile |
| liblvm/liblvm2app.pc |
| -man/Makefile |
| po/Makefile |
| python/Makefile |
| python/setup.py |
| -- |
| 2.7.4 |
| |