Discussion:
A message "make[1]: [neat] Error 1 (ignored)" ?
Aleksey Yakovlev
2009-11-15 00:35:03 UTC
Permalink
Hello,

When I call make with "clean" target, it does everything right but outputs
many messages like:

make[1]: [neat] Error 1 (ignored)

What does this message mean?

(Make version 3.81 on RedHat Linux)

Thank you,
Aleksey
Eli Zaretskii
2009-11-15 04:12:32 UTC
Permalink
Date: Sat, 14 Nov 2009 19:35:03 -0500
When I call make with "clean" target, it does everything right but outputs
make[1]: [neat] Error 1 (ignored)
What does this message mean?
It means that the command(s) called by that target exited with an
error status (value 1). This would usually stop Make, but in this
case Make ignored that because the Makefile told it to ignore errors
in those commands.

Loading...