make question (suppress Error)
"James" <[email protected]>
| Newsgroups | gmane.comp.gnu.utils |
|---|---|
| Organization | http://groups.google.com |
| Message-ID | <[email protected]> |
How do I suppress Error message or is it possible?
For example,
$ cat makefile
all:
- ls *.zzz 2>/dev/null
$ make
ls *.zzz 2>/dev/null
make: [all] Error 1 (ignored)
I do not want the last line
make: [all] Error 1 (ignored)
to be shown.
Thanks.
James