:The snippet from /usr/src/Makefile.inc1 that I'm talking about (in my
:own little world) was this:
:
:.if !defined(NOCLEAN)
:        @echo
:        @echo "--------------------------------------------------------------"
:        @echo ">>> Cleaning up the temporary ${OBJFORMAT} build tree"
:        @echo "--------------------------------------------------------------"
:        mkdir -p ${WORLDTMP}
:        -chflags -R noschg ${WORLDTMP}/
:        rm -rf ${WORLDTMP}
:.endif
:
:
:Can we please have this optimised ?

    I think that the rm -rf can safely be placed before before AND after
    the chflags, which will optimize the chflags considerably.  This combined
    with using softupdates for your /usr/obj partition will result in 
    a very quick cleanup time.

                                                -Matt



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to