diff options
-rwxr-xr-x | src/build/tools/hbGenConfig | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/build/tools/hbGenConfig b/src/build/tools/hbGenConfig index 4fd93ae88..d33b086f7 100755 --- a/src/build/tools/hbGenConfig +++ b/src/build/tools/hbGenConfig @@ -6,7 +6,9 @@ # # OpenPOWER HostBoot Project # -# COPYRIGHT International Business Machines Corp. 2014 +# Contributors Listed Below - COPYRIGHT 2014 +# [+] International Business Machines Corp. +# # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -236,7 +238,8 @@ sub evaluateExpr } # Call perl's 'eval' to perform the logical operations. - return eval $expr; + return 1 if eval $expr; + return 0; } # @sub outputResults |