Skip to content

Commit

Permalink
Rename variable/s to make them more descriptive.
Browse files Browse the repository at this point in the history
  • Loading branch information
shlomif committed Dec 31, 2024
1 parent 4349ae2 commit 29b22e5
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions fc-solve/scripts/multi_config_tests.pl
Original file line number Diff line number Diff line change
Expand Up @@ -772,13 +772,14 @@ sub enable_website_build_for_now
_chdir_run(
'../',
sub {
my $base_path = path("B-opencl")->absolute();
my $board_gen_path = $base_path->child("board_gen")->absolute();
my $inst_path = path("INST-opencl")->absolute();
$board_gen_path->mkdir();

local $ENV{'CC'} = 'clang';
local $ENV{'REBUILD'} = '1';
my $base_path = path("B-opencl")->absolute();
my $path = path("B-opencl/board_gen")->absolute();
my $inst_path = path("INST-opencl/board_gen")->absolute();
$path->mkdir();
local $ENV{PATH} = $ENV{PATH} . ":${inst_path}/bin";
local $ENV{PATH} = $ENV{PATH} . ":${inst_path}/bin";

_chdir_run(
$base_path,
Expand All @@ -798,7 +799,7 @@ sub enable_website_build_for_now
);

_chdir_run(
$path,
$board_gen_path,
sub {
warn qx#pwd#;
run_cmd(
Expand Down

0 comments on commit 29b22e5

Please sign in to comment.