Re: Linux Makefile uses 'ls', causes problems with color-ls (PATCH)

Trevor Johnson (trevor@jpj.net)
Wed, 31 Mar 1999 04:28:07 -0500 (EST)


> - ls *.o > $$MODLIB/.allmods; \
> + rm -f $$MODLIB/.allmods; \
> + for x in *.o; do echo $$x>>$$MODLIB/.allmods; done; \

...or just:

echo *.o >$$MODLIB/.allmods; \
__
Trevor Johnson

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/