citrun

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

commit 89318bb243d6950f675faf72ae951fa63b69daf6
parent 92ab1b746bb63e9d239999c058fe57770d0c6197
Author: Kyle Milz <kyle@getaddrinfo.net>
Date:   Wed, 30 Mar 2016 17:48:05 -0600

SCV: shuffle env vars

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

diff --git a/SCV/Project.pm b/SCV/Project.pm @@ -88,9 +88,9 @@ sub inst_src_preamble { sub run { my ($self, @args) = @_; - $ENV{SCV_VIEWER_SOCKET} = "SCV::Viewer.socket"; $ENV{LD_LIBRARY_PATH} = "lib"; $ENV{DYLD_LIBRARY_PATH} = "lib"; + $ENV{SCV_VIEWER_SOCKET} = "SCV::Viewer.socket"; my $tmp_dir = $self->{tmp_dir}; $self->{pid} = open2(\*CHLD_OUT, undef, "$tmp_dir/$self->{prog_name}", @args);