citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 2fe8ac798ce3a1305363d4f0e6bf4578e80fe285
parent fed5f849ea26dc6046e89a95861825c04203e8e2
Author: kyle <kyle@0x30.net>
Date:   Sun, 29 Jan 2017 12:01:30 -0700

share: let install work (symlinks are resolved, problem for another day)

Diffstat:
Mshare/citrun/Jamfile | 17+++--------------
1 file changed, 3 insertions(+), 14 deletions(-)

diff --git a/share/citrun/Jamfile b/share/citrun/Jamfile @@ -2,19 +2,8 @@ SubDir TOP share citrun ; rule InstallSym { - Depends install : $(PREFIX)/share/citrun/$(>) ; - MakeLocate $(PREFIX)/share/citrun/$(>) : $(<) ; - - #for i in $(>) - #{ - # SymLink $(PREFIX)/share/citrun/$(i) ; - #} -} - -actions InstallSym -{ - cp -RP share/citrun/$(>) $(PREFIX)/share/citrun ; - # $(RM) $(<) && $(LN) -s ../../bin/citrun_inst $(<) ; + InstallInto $(<) : $(>) ; + MODE on $(>:G=$(INSTALLGRIST)) = $(EXEMODE) ; } -InstallSym $(PREFIX)/share/citrun : cc gcc clang clang++ g++ c++ egcc eg++ ; +InstallBin $(PREFIX)/share/citrun : cc gcc clang clang++ g++ c++ egcc eg++ ;