File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 4
4
# Copyright (c) 2010 Oracle and/or its affiliates. All rights reserved.
5
5
# Copyright (c) 2013 Mellanox Technologies, Inc.
6
6
# All rights reserved.
7
- # Copyright (c) 2013-2014 Intel, Inc. All rights reserved.
7
+ # Copyright (c) 2013-2020 Intel, Inc. All rights reserved.
8
8
# Copyright (c) 2015-2019 Research Organization for Information Science
9
9
# and Technology (RIST). All rights reserved.
10
10
# Copyright (c) 2015 IBM Corporation. All rights reserved.
@@ -172,7 +172,10 @@ sub process_subdir {
172
172
# Chdir to the subdir
173
173
print " \n === Processing subdir: $dir \n " ;
174
174
my $start = Cwd::cwd();
175
- chdir ($dir );
175
+ my $check = chdir ($dir );
176
+ if (0 == $check ) {
177
+ my_die " Could not change to $dir \n " ;
178
+ }
176
179
177
180
# Run an action depending on what we find in that subdir
178
181
if (-x " autogen.pl" ) {
You can’t perform that action at this time.
0 commit comments