Linux/Linux Kernel

kernel 빌드 에러 Can't use 'defined(@array)' (Maybe you should just omit the defined()?) at kernel/timeconst.pl line 373.

Real_G 2017. 12. 12. 09:54
반응형

# vi kernel/timeconst.pl 
Can't use 'defined(@array)' (Can't use 'defined(@array)' (Maybe you should just omit the defined()?) at kernel/timeconst.pl line 373. ?) at kernel/timeconst.pl line 373. 

line 373 
  if (!defined(@val)) {      -  if (!@val) { 



if (!defined(@val)) {

→ if (!@val) {

반응형