Use perl from PATH, not from absolute shebang (#2304)

This commit is contained in:
Harmen Stoppels
2021-08-19 06:56:03 +02:00
committato da GitHub
parent 402211e28e
commit 526d0bf97b
6 ha cambiato i file con 12 aggiunte e 6 eliminazioni
+2 -1
Vedi File
@@ -1,4 +1,4 @@
#!/usr/bin/perl -w
#!/usr/bin/env perl
# Copyright (c) 2015 - 2021 Advanced Micro Devices, Inc. All rights reserved.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -21,6 +21,7 @@
# Need perl > 5.10 to use logic-defined or
use 5.006; use v5.10.1;
use warnings;
use File::Basename;
use File::Temp qw/ :mktemp /;
use Cwd;