From 0e556ee40c1690398185006ccd920ca4c4a8fee5 Mon Sep 17 00:00:00 2001 From: Alain Miniussi Date: Fri, 1 May 2015 00:37:07 +0200 Subject: [PATCH] Install executable in bin dir. There is no reason to install executables in different location based on the language they'rewritten. So python scripts should be availables in the exec_prefix directory (typically stage/bin). One side effect is that when in regression.py, we know were to find, says process_bjam_log. --- testing/build/Jamfile.jam | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/testing/build/Jamfile.jam b/testing/build/Jamfile.jam index abcfebd..c18ae30 100644 --- a/testing/build/Jamfile.jam +++ b/testing/build/Jamfile.jam @@ -11,7 +11,7 @@ exe process_jam_log ; explicit process_jam_log ; -alias install : exec ; +alias install : exec scripts ; install exec : process_jam_log/release @@ -20,3 +20,13 @@ install exec $(INSTALL_PREFIX_EXEC) ; explicit install exec ; + +install scripts + : + ../src/regression.py + ../src/collect_and_upload_logs.py + ../src/process_jam_log.py + : + $(INSTALL_PREFIX_EXEC) + ; +explicit install scripts ;