Skip to content

Commit 76ee427

Browse files
authored
Install installs rv.install_handler_linux and rv.install_handler_linux_rvpush (AcademySoftwareFoundation#301)
<!-- Thanks for your contribution! Please read this comment in its entirety. It's quite important. When a contributor merges the pull request, the title and the description will be used to build the merge commit! ### Pull Request TITLE It should be in the following format: [ 12345: Summary of the changes made ] Where 12345 is the corresponding Github Issue OR [ Summary of the changes made ] If it's solving something trivial, like fixing a typo. --> ### Linked issues <!-- Link the Issue(s) this Pull Request is related to. Each PR should link to at least one issue, in the form: Use one line for each Issue. This allows auto-closing the related issue when the fix is merged. Fixes #12345 Fixes #54345 --> N/A ### Summarize your change. Adds the rv.install_handler scripts when building on Linux. ### Describe the reason for the change. This operation is missing from the new build system implementation. ### Describe what you have tested and on which operating system. Tested on Rocky9 ### Add a list of changes, and note any that might need special attention during the review. N/A ### If possible, provide screenshots. N/A Signed-off-by: Kerby Geffrard <[email protected]>
1 parent bf194dd commit 76ee427

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

packages/rv/CMakeLists.txt

+5
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,8 @@ IF(RV_TARGET_WINDOWS)
3030
ENDFOREACH()
3131
CONFIGURE_FILE(README.regfiles ${RV_APP_ROOT}/etc/README.regfiles COPYONLY)
3232
ENDIF()
33+
34+
IF(RV_TARGET_LINUX)
35+
CONFIGURE_FILE(rv.install_handler_linux ${RV_STAGE_BIN_DIR} COPYONLY)
36+
CONFIGURE_FILE(rv.install_handler_linux_rvpush ${RV_STAGE_BIN_DIR} COPYONLY)
37+
ENDIF()

0 commit comments

Comments
 (0)