diff mbox series

[08/11] util-linux: Do not build raw any more.

Message ID 20220130162538.3370704-8-hauke@hauke-m.de
State Accepted
Delegated to: Hauke Mehrtens
Headers show
Series [01/11] toolchain: glibc: update to latest 2.34 HEAD | expand

Commit Message

Hauke Mehrtens Jan. 30, 2022, 4:25 p.m. UTC
The man page of the raw tool does not build because the disk-utils/raw.8
file is missing. It looks like it should be in the tar.xz file we
download, but it is missing.

We do not package the raw tool, so this is not a problem.

This fixes the following build error:
No rule to make target 'disk-utils/raw.8', needed by 'all-am'.  Stop.

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
---
 package/utils/util-linux/Makefile | 1 +
 1 file changed, 1 insertion(+)

Comments

Stijn Tintel Jan. 31, 2022, 10:59 a.m. UTC | #1
On 30/01/2022 18:25, Hauke Mehrtens wrote:
> The man page of the raw tool does not build because the disk-utils/raw.8
> file is missing. It looks like it should be in the tar.xz file we
> download, but it is missing.
>
> We do not package the raw tool, so this is not a problem.
>
> This fixes the following build error:
> No rule to make target 'disk-utils/raw.8', needed by 'all-am'.  Stop.
If this error is introduced by the version bump, please disable raw
before doing the bump, otherwise we potentially break bisecting.

Thanks,
Stijn
diff mbox series

Patch

diff --git a/package/utils/util-linux/Makefile b/package/utils/util-linux/Makefile
index 1714aff95ba0..f2d58b413fd5 100644
--- a/package/utils/util-linux/Makefile
+++ b/package/utils/util-linux/Makefile
@@ -542,6 +542,7 @@  CONFIGURE_ARGS += \
 	--disable-lslogins		\
 	--disable-runuser		\
 	--disable-chfn-chsh		\
+	--disable-raw			\
 	--without-python		\
 	--without-udev			\
 	--without-readline		\