On Tue, 2 Apr 2002, Alexander Leidinger wrote:

> Hi,
>
> kern.pre.mk contains
>   NORMAL_C= ${CC} -c ${CFLAGS} ${WERROR} ${PROF} ${.IMPSRC}
>   PROFILE_C= ${CC} -c ${CFLAGS} ${WERROR} ${.IMPSRC}
>   NORMAL_C_NOWERROR= ${CC} -c ${CFLAGS} ${PROF} ${.IMPSRC}
> shouldn't this be
>   NORMAL_C= ${CC} -c ${CFLAGS} ${WERROR} ${.IMPSRC}
>   PROFILE_C= ${CC} -c ${CFLAGS} ${PROF} ${WERROR} ${.IMPSRC}
>   NORMAL_C_NOWERROR= ${CC} -c ${CFLAGS} ${.IMPSRC}

No.  ${PROFILE_C} is for compiling profiling support files that must
be compiled without profiling.

Bruce


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

Reply via email to