Fix error logs while trying to read MANIFEST.

After all lines have been read "while (getline(efile, line))"
will still try and read another line and returns an exception.
Checking the eof(end of file) bit confirms this and is not a
valid error.

This is part of a fix for openbmc/openbmc#2174

Change-Id: I0254b7f029a6343dae03d2fbc639f74c51d05d99
Signed-off-by: Saqib Khan <khansa@us.ibm.com>
1 file changed
tree: 2f1f1c74d93d0c8287bd48cf146f29ca529db5bd
  1. m4/
  2. test/
  3. .gitignore
  4. activation.cpp
  5. activation.hpp
  6. bootstrap.sh
  7. configure.ac
  8. generate-squashfs
  9. item_updater.cpp
  10. item_updater.hpp
  11. item_updater_main.cpp
  12. LICENSE
  13. Makefile.am
  14. README.md
  15. serialize.cpp
  16. serialize.hpp
  17. version.cpp
  18. version.hpp
README.md

To Build

To build this package, do the following steps:

    1. ./bootstrap.sh
    2. ./configure ${CONFIGURE_FLAGS}
    3. make

To full clean the repository again run `./bootstrap.sh clean`.