This is an automated email from the ASF dual-hosted git repository.
bneradt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 47572a40b5 Fix CMake build to install traffic_ctl target (#9996)
47572a40b5 is described below
commit 47572a40b56e125992139a664c0eb76ca3a990b7
Author: JosiahWI <[email protected]>
AuthorDate: Tue Jul 11 15:20:37 2023 -0500
Fix CMake build to install traffic_ctl target (#9996)
The CMakeLists in src/traffic_ctl was erroneously installing the
traffic_server target instead of the traffic_ctl target.
---
src/traffic_ctl/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/traffic_ctl/CMakeLists.txt b/src/traffic_ctl/CMakeLists.txt
index 8ab0222cea..94c8ed289d 100644
--- a/src/traffic_ctl/CMakeLists.txt
+++ b/src/traffic_ctl/CMakeLists.txt
@@ -35,4 +35,4 @@ target_link_libraries(traffic_ctl
libswoc
)
-install(TARGETS traffic_server)
+install(TARGETS traffic_ctl)