-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
development: rpmbuild.sh fails to find manpages #184
Comments
It looks to me like earlier in the process it failed to generate the manpages. Perhaps one of the packages used to generate them is missing. Hopefully there is a message earlier on that indicates what is happening. can you capture all the output to the screen and post it here or you can send it to me directly (my email is my profile). What distro and version are you using to build on? |
sure, let me take a look and get back to you. |
$ ./rpmbuild.sh 03.00.00.0423 Could not find a package configuration file provided by "a2x" with any of
Add the installation prefix of "a2x" to CMAKE_PREFIX_PATH or set "a2x_DIR" -- Could NOT find asciidoctor (missing: ASCIIDOCTOR_BINARY) Is 'asciidoctor' a required package? the "master" branch is fine without it. |
I would not expect it to be different from master. I believe asciidoc or asciidoctor should work. I do not know how recently that has been tested. a2x looks like it is part of asciidoc and I found suggestions to try installing asciidoc-base. I'll have to look into more later. |
Thanks! I attached the complete log in email. |
just checked, I have /usr/bin/a2x, as part of asciidoc. perhaps the issue is something else. |
A couple of added cmake find helper files for cmake were missed in a merge. Fixed on tags |
In the "development" branch, "./rpmbuild.sh 03.00.00.0423" halted with
RPM build errors:
File not found: /home2/workspace/ipmctl-repos/ipmctl.development/output/rpmbuild/BUILDROOT/ipmctl-03.00.00.0423-1.el8.x86_64/usr/share/man/man1/ipmctl*
Looking at the ./output/cmake_install.cmake file, it is missing
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/man/man1" TYPE DIRECTORY FILES "/home2/workspace/ipmctl-repos/ipmctl.master/output/release/manpage/")
in comparison to the cmake_install.cmake file generated in the "master" branch.
Since cmake_install.cmake file is automatically generated by "cmake -DRELEASE=ON -DCMAKE_INSTALL_PREFIX=/usr .." in both branches, what else is causing this gap?
The text was updated successfully, but these errors were encountered: