Re: Duplicated WITH_*/WITHOUT_* options

2013-11-21 Thread Mark Robert Vaughan Murray
On 21 Nov 2013, at 12:11, Dimitry Andric wrote: > These duplicated settings are not oversights, just artifacts of how > bsd.own.mk works. The defaults are simply different for different > arches, e.g. WITH_CLANG is the default for x86, powerpc and LE arm, but > WITHOUT_CLANG is the default for

Re: Duplicated WITH_*/WITHOUT_* options

2013-11-21 Thread Dimitry Andric
On 21 Nov 2013, at 09:44, Mark Robert Vaughan Murray wrote: > I noticed we have some duplicated WITH_*/WITHOUT_* options; presumably this > is an oversight? > > [graveyard] /usr/src/tools/build/options 08:37 am # for i in WITH_* ; do if [ > -e WITHOUT_${i##WITH_} ] ; then e

Duplicated WITH_*/WITHOUT_* options

2013-11-21 Thread Mark Robert Vaughan Murray
Hi I noticed we have some duplicated WITH_*/WITHOUT_* options; presumably this is an oversight? [graveyard] /usr/src/tools/build/options 08:37 am # for i in WITH_* ; do if [ -e WITHOUT_${i##WITH_} ] ; then echo WITHOUT_${i##WITH_} ${i} ; fi; done WITHOUT_CLANG WITH_CLANG WITHOUT_CLANG_FULL