"Johan Bezem" <[EMAIL PROTECTED]> wrote: > DervishD wrote: >> Will this undesired >> behaviour (undesired by me, at least) be solved if I replace >> $(wildcard pattern) with $(shell echo pattern)? > > No, you'd probably need 'ls', 'echo' just echoes the given characters, and > uses no wildcard expansion AFAIK, depending on your shell.
ls doesn't do wildcard expansion either. The shell does it, and does it for all commands, including ls and echo. The difference is that echo will output its arguments unconditionally, and ls will check whether the named files exist. paul _______________________________________________ Bug-make mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-make
