Re: make question (suppress Error)

2006-08-03 Thread Paul D. Smith
%% "James" <[EMAIL PROTECTED]> writes: j> How do I suppress Error message or is it possible? j> $ cat makefile j> all: j> - ls *.zzz 2>/dev/null j> $ make j> ls *.zzz 2>/dev/null j> make: [all] Error 1 (ignored) j> I do not want the last line j> make: [all] Error 1 (ign

make question (suppress Error)

2006-08-03 Thread James
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