From: Bernd E. <eid...@we...> - 2007-08-14 09:14:16
|
Hi Zoran, > < for i in `find doc/html -maxdepth 1 -name "*.html" - > print`; do \ > I want to remove the "-maxdepth" from Makefile as this is not > supported on all platforms (Solaris for example). > Is this OK for you? or a simple ========================== for i in `ls doc/html/*.html`; do ========================== cu BE |