[distcc] Solaris patch and popt replacement

Alexandre Oliva oliva at lsd.ic.unicamp.br
Tue Oct 15 16:31:00 GMT 2002


On Oct 15, 2002, Martin Pool <mbp at sourcefrog.net> wrote:

>> +       for s in src; do cd $$s; $(MAKE) all  || exit $$? ; done

> It is far better to say

>   cd $$s && $(MAKE) all

Even better to say:

        do (cd $$s && $(MAKE) all)

otherwise you lose if `s' iterates on more than one directory :-)

-- 
Alexandre Oliva   Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
Red Hat GCC Developer                 aoliva@{redhat.com, gcc.gnu.org}
CS PhD student at IC-Unicamp        oliva@{lsd.ic.unicamp.br, gnu.org}
Free Software Evangelist                Professional serial bug killer



More information about the distcc mailing list