diff options
author | Nozomu KURASAWA <nabetaro@caldron.jp> | 2012-06-16 22:34:33 +0000 |
---|---|---|
committer | Nozomu KURASAWA <nabetaro@caldron.jp> | 2012-06-16 22:34:33 +0000 |
commit | 81af2e13f2e56218e907675335d1a201f325502d (patch) | |
tree | 3f7591b71200029ac1e81fceb321bc2f693b61b7 /scripts | |
parent | 0016f6d84762d1de7599196f9e9ff3f408f42ad7 (diff) | |
download | installation-guide-81af2e13f2e56218e907675335d1a201f325502d.zip |
It cannot find file existed. So, fixedd logic.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/merge_xml.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/merge_xml.awk b/scripts/merge_xml.awk index b0f590690..3f692a8a8 100644 --- a/scripts/merge_xml.awk +++ b/scripts/merge_xml.awk @@ -81,7 +81,7 @@ function parse_file(PARSEFILE, FNAME, fname, nwline, comment_count) { # Test whether file exists getline <PARSEFILE - if (ERRNO != 0) { + if (length(ERRNO) != 0) { print "** Error: file '" PARSEFILE "' does not exist!" >>LOG return } |