citrun

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

commit 5a90eec8976192db60cc998fd6b35ff41aee985a
parent d1f1da86fd333df687a9651e04038e4b6e1c2b34
Author: kyle <kyle@getaddrinfo.net>
Date:   Sat,  2 Apr 2016 14:33:59 -0600

move wrap to bin

Diffstat:
MJamfile | 2+-
MSCV/Project.pm | 2+-
Abin/Jamfile | 4++++
Rwrap/scv_wrap -> bin/citrun_wrap | 0
Rwrap/scv_wrap.1 -> bin/citrun_wrap.1 | 0
Dwrap/Jamfile | 4----
6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/Jamfile b/Jamfile @@ -1,5 +1,5 @@ SubDir TOP ; +SubInclude TOP bin ; SubInclude TOP lib ; SubInclude TOP src ; -SubInclude TOP wrap ; diff --git a/SCV/Project.pm b/SCV/Project.pm @@ -51,7 +51,7 @@ EOF # Use the wrapper to make sure it works my $cwd = getcwd; - my $ret = system( "cd $tmp_dir && $cwd/wrap/scv_wrap jam" ); + my $ret = system( "cd $tmp_dir && $cwd/bin/citrun_wrap jam" ); die "make failed: $ret\n" if ($ret); } diff --git a/bin/Jamfile b/bin/Jamfile @@ -0,0 +1,4 @@ +SubDir TOP bin ; + +InstallBin $(PREFIX)/bin : citrun_wrap ; +InstallMan $(PREFIX)/man : citrun_wrap.1 ; diff --git a/wrap/scv_wrap b/bin/citrun_wrap diff --git a/wrap/scv_wrap.1 b/bin/citrun_wrap.1 diff --git a/wrap/Jamfile b/wrap/Jamfile @@ -1,4 +0,0 @@ -SubDir TOP wrap ; - -InstallBin $(PREFIX)/bin : scv_wrap ; -InstallMan $(PREFIX)/man : scv_wrap.1 ;