mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-27 00:33:30 +00:00
checkstyle9.pl: Don't use $root if not defined
$root is only defined when given on the command line. Don't try to use its value when it's not defined. Sponsored by: Netflix
This commit is contained in:
parent
1e81724578
commit
4748db6ffd
@ -1410,7 +1410,7 @@ sub process {
|
||||
checkfilename($realfile, \$acpi_testexpected, \$acpi_nontestexpected);
|
||||
|
||||
$p1_prefix = $1;
|
||||
if (!$file && $tree && $p1_prefix ne '' &&
|
||||
if (!$file && $tree && $p1_prefix ne '' && defined $root &&
|
||||
-e "$root/$p1_prefix") {
|
||||
WARN("patch prefix '$p1_prefix' exists, appears to be a -p0 patch\n");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user