citrun

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

commit 15451126ca260681e7d6f5ae4c4cf5b6670db0a3
parent 007f3dac30196cfb321aec75d7125d0b0b5503f4
Author: Kyle Milz <kyle@0x30.net>
Date:   Sat,  9 Jul 2016 18:05:30 -0600

Test: use cwd instead of getcwd

Diffstat:
MTest/Project.pm | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Test/Project.pm b/Test/Project.pm @@ -50,7 +50,7 @@ EOF close( $jamfile_fh ); # Use the tools in this source tree - $ENV{PATH} = getcwd . "/share:$ENV{PATH}"; + $ENV{PATH} = cwd . "/share:$ENV{PATH}"; my $ret = system( "cd $tmp_dir && jam" ); die "make failed: $ret\n" if ($ret);