Last active
August 29, 2015 14:05
-
-
Save ladislas/a3189d4b5a4304b6a115 to your computer and use it in GitHub Desktop.
ttylog target destination patch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ttylog - change the install target destination from 'sbin' to 'bin' for homebrew formula | |
=========================================================== | |
--- a/CMakeLists.txt | |
+++ b/CMakeLists.txt | |
@@ -22,6 +22,6 @@ SET(ttylog_executable_HDRS | |
ADD_EXECUTABLE(ttylog ${ttylog_executable_SRCS}) | |
# add install targets: | |
-INSTALL(TARGETS ttylog DESTINATION sbin) | |
+INSTALL(TARGETS ttylog DESTINATION bin) | |
# add install man page: | |
INSTALL(FILES ttylog.8 DESTINATION share/man/man8) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment