From 961588fd58020a7c21e4a9c0c50bc5a5f26e4790 Mon Sep 17 00:00:00 2001 From: Dave Brolley Date: Fri, 18 Dec 2009 16:22:01 -0500 Subject: PR 10247 10276 10905: Infrastructure for moving underlying client/server tools to libexec. --- stap-find-or-start-server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stap-find-or-start-server') diff --git a/stap-find-or-start-server b/stap-find-or-start-server index a93b21fe..658ee2b1 100755 --- a/stap-find-or-start-server +++ b/stap-find-or-start-server @@ -18,7 +18,7 @@ # Otherwise, it echoes -1 # Initialize the environment -. `dirname $0`/stap-env +. ${PKGLIBEXECDIR}stap-env # Is there a server available? ${stap_exec_prefix}stap-find-servers >/dev/null 2>&1 && echo 0 && exit 0 -- cgit From edecda6cff1304fca4c47034b7064dcd51bcc33d Mon Sep 17 00:00:00 2001 From: Dave Brolley Date: Mon, 21 Dec 2009 11:26:05 -0500 Subject: PR 10247, 10276, 10905: Move remaining client/server tools to libexec. --- stap-find-or-start-server | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'stap-find-or-start-server') diff --git a/stap-find-or-start-server b/stap-find-or-start-server index 658ee2b1..a9a4cde0 100755 --- a/stap-find-or-start-server +++ b/stap-find-or-start-server @@ -21,10 +21,10 @@ . ${PKGLIBEXECDIR}stap-env # Is there a server available? -${stap_exec_prefix}stap-find-servers >/dev/null 2>&1 && echo 0 && exit 0 +${stap_pkglibexecdir}stap-find-servers >/dev/null 2>&1 && echo 0 && exit 0 # No server available, try to start one. -pid=`${stap_exec_prefix}stap-start-server "$@"` +pid=`${stap_pkglibexecdir}stap-start-server "$@"` if test $? = 0; then echo $pid exit 0 -- cgit