Fix installation destinations for overrides and quotes scripts

Mentioned by Robert Gowin and Christopher Lam
This commit is contained in:
Geert Janssens 2017-11-30 17:37:32 +01:00
parent 41656c920e
commit 649a6a263e
2 changed files with 2 additions and 2 deletions

View File

@ -28,5 +28,5 @@ INSTALL(
PROGRAMS
${SCRIPT_OUTPUT_DIR}/gnucash-env
${SCRIPT_OUTPUT_DIR}/gnucash-make-guids
DESTINATION }exec/gnucash/overrides
DESTINATION ${CMAKE_INSTALL_LIBEXECDIR}/gnucash/overrides
)

View File

@ -47,7 +47,7 @@ ENDFOREACH(file)
ADD_CUSTOM_TARGET(quotes-man ALL DEPENDS ${_MAN_FILES})
ADD_CUSTOM_TARGET(quotes-bin ALL DEPENDS gnc-fq-check gnc-fq-update)
INSTALL(FILES ${_MAN_FILES} DESTINATION share/man/man1)
INSTALL(PROGRAMS ${_BIN_FILES} DESTINATION })
INSTALL(PROGRAMS ${_BIN_FILES} DESTINATION ${CMAKE_INSTALL_BINDIR})
SET_DIST_LIST(quotes_DIST CMakeLists.txt gnc-fq-check.in gnc-fq-dump gnc-fq-helper.in gnc-fq-update.in
gnc-value-portfolio Makefile.am Quote_example.pl README)