Allow for /usr/bin/hipcc to be a symlink
SWDEV-267206 If /usr/bin/hipcc is a symlink then resolve it first, and then find the resulting directory rather than resolving /usr/bin. Change-Id: I380728ffa05ed813cc793a1d6488aaae81ddbda8
This commit is contained in:
committed by
Maneesh Gupta
parent
dab9ae32b2
commit
468929e539
@@ -10,7 +10,7 @@ use List::Util qw(max);
|
||||
|
||||
my $base_dir;
|
||||
BEGIN {
|
||||
$base_dir = Cwd::realpath( dirname(__FILE__) );
|
||||
$base_dir = dirname( Cwd::realpath(__FILE__) );
|
||||
}
|
||||
use lib "$base_dir/";
|
||||
use hipvars;
|
||||
|
||||
+1
-1
@@ -95,7 +95,7 @@ sub delete_temp_dirs {
|
||||
|
||||
my $base_dir;
|
||||
BEGIN {
|
||||
$base_dir = Cwd::realpath( dirname(__FILE__) );
|
||||
$base_dir = dirname(Cwd::realpath(__FILE__) );
|
||||
}
|
||||
use lib "$base_dir/";
|
||||
use hipvars;
|
||||
|
||||
@@ -12,7 +12,7 @@ use File::Basename;
|
||||
|
||||
my $base_dir;
|
||||
BEGIN {
|
||||
$base_dir = Cwd::realpath( dirname(__FILE__) );
|
||||
$base_dir = dirname( Cwd::realpath(__FILE__) );
|
||||
}
|
||||
use lib "$base_dir/";
|
||||
use hipvars;
|
||||
|
||||
Reference in New Issue
Block a user