| Summary: | missing docbook-sgml-tools dependency in module-init-tools-3.x package | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | Steffen 'j0inty' Stollfuß <j0inty> |
| Component: | [OLD] Core system | Assignee: | Gentoo Linux bug wranglers <bug-wranglers> |
| Status: | RESOLVED DUPLICATE | ||
| Severity: | minor | ||
| Priority: | High | ||
| Version: | unspecified | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
is this a duplicate of bug 258241 ? *** This bug has been marked as a duplicate of bug 258241 *** |
Hi, Today there was an update for modules-init-tools in my portage and when I was tried to install it and it failed with the make error code 127. This error 127 indicates that make can't find a program that it needs to run a command. So I looked at my build log and saw that the last command tried to run was docbook2man. I found out that this isn't installed for me and so I installed it and everything works fine now. emerge docbook-sgml-tools I look at the ebuild tells me that their is no dependency for the docbook utils. We should fix that. regards j0inty Reproducible: Always Actual Results: if [ "docbook2man" = "docbook2man" ]; then \ docbook2man doc/modprobe.conf.sgml > /dev/null 2>&1; \ else \ docbook2man doc/modprobe.conf.sgml 2>&1 > modprobe.conf.5 | sed 's/^[^:]*://'; \ fi make: *** [modprobe.conf.5] Error 127 Expected Results: if [ "docbook2man" = "docbook2man" ]; then \ docbook2man doc/modprobe.conf.sgml > /dev/null 2>&1; \ else \ docbook2man doc/modprobe.conf.sgml 2>&1 > modprobe.conf.5 | sed 's/^[^:]*://'; \ fi mv -f .deps/tables.Tpo .deps/tables.Po if [ "docbook2man" = "docbook2man" ]; then \ docbook2man doc/modules.dep.sgml > /dev/null 2>&1; \ else \ docbook2man doc/modules.dep.sgml 2>&1 > modules.dep.5 | sed 's/^[^:]*://'; \ fi ... and soon