We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi Tim,
during the standard build process I see that the conf file is not being placed where it should be
$ cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr ../ $ make $ sudo make install Consolidate compiler generated dependencies of target openbmpd [100%] Built target openbmpd Install the project... -- Install configuration: "" -- Installing: /usr/bin/openbmpd -- Up-to-date: **/usr/etc/openbmp/openbmpd.conf**
After making installation path absolute, not reletative it's fixed install(FILES openbmpd.conf DESTINATION **/etc/openbmp/** COMPONENT config)
install(FILES openbmpd.conf DESTINATION **/etc/openbmp/** COMPONENT config)
And, we get
$ sudo make install Consolidate compiler generated dependencies of target openbmpd [100%] Built target openbmpd Install the project... -- Install configuration: "" -- Installing: /usr/bin/openbmpd -- Up-to-date: **/etc/openbmp/openbmpd.conf**
The text was updated successfully, but these errors were encountered:
TimEvens
No branches or pull requests
Hi Tim,
during the standard build process I see that the conf file is not being placed where it should be
After making installation path absolute, not reletative it's fixed
install(FILES openbmpd.conf DESTINATION **/etc/openbmp/** COMPONENT config)
And, we get
The text was updated successfully, but these errors were encountered: