From 1637c38cbadf6fea4b1ea7076b300bc0f815072b Mon Sep 17 00:00:00 2001 From: Koichiro IWAO Date: Tue, 13 Apr 2021 18:32:52 +0900 Subject: [PATCH] do not install test & development tool These tools shouldn't be delivered to end-users, included in distro packages. Also the execuable names "memtest" and "tcp_proxy" are too general to install into sbin dir. --- tests/memtest/Makefile.am | 4 ++-- tools/devel/tcp_proxy/Makefile.am | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/memtest/Makefile.am b/tests/memtest/Makefile.am index 4ab113c8..dc18d5ca 100644 --- a/tests/memtest/Makefile.am +++ b/tests/memtest/Makefile.am @@ -6,7 +6,7 @@ if XRDP_DEBUG AM_CPPFLAGS += -DXRDP_DEBUG endif -sbin_PROGRAMS = \ +noinst_PROGRAMS = \ memtest memtest_SOURCES = \ @@ -18,4 +18,4 @@ memtest_LDADD = \ $(top_builddir)/common/libcommon.la TESTS = \ - memtest \ No newline at end of file + memtest diff --git a/tools/devel/tcp_proxy/Makefile.am b/tools/devel/tcp_proxy/Makefile.am index 5ca6bdd2..2e049489 100644 --- a/tools/devel/tcp_proxy/Makefile.am +++ b/tools/devel/tcp_proxy/Makefile.am @@ -6,7 +6,7 @@ if XRDP_DEBUG AM_CPPFLAGS += -DXRDP_DEBUG endif -sbin_PROGRAMS = \ +noinst_PROGRAMS = \ tcp_proxy tcp_proxy_SOURCES = \ @@ -14,4 +14,4 @@ tcp_proxy_SOURCES = \ tcp_proxy_LDADD = \ $(top_builddir)/common/libcommon.la \ - -ldl \ No newline at end of file + -ldl