Forgotten debuging flags in 9.0 RELEASE

John Baldwin jhb at freebsd.org
Mon Apr 23 19:07:16 UTC 2012


On Saturday, April 21, 2012 12:43:28 pm rank1seeker at gmail.com wrote:
> Whenever I run:
> # make distribution
> 
> I also get:
> + ln -s ../var/named/etc/namedb /usr/TZONE/etc/namedb
> + ln -s mail/aliases /usr/TZONE/etc/aliases
> 
> Looks like someone forgot to turn off/remove debuging flags(set -x), before 
building 9.0 RELEASE

Actually, those have been there for at least 7 years.  The namedb one was 
first added in r136242, and the mail one is older than that.

> /usr/src/etc/Makefile:
> ----
>         @if [ ! -e ${DESTDIR}/etc/namedb ]; then \
>                 set -x; \
>                 ln -s ../var/named/etc/namedb ${DESTDIR}/etc/namedb; \
>         fi
> ----
>         @if [ -d ${DESTDIR}/etc/mail -a -f ${DESTDIR}/etc/mail/aliases -a \
>               ! -f ${DESTDIR}/etc/aliases ]; then \
>                 set -x; \
>                 ln -s mail/aliases ${DESTDIR}/etc/aliases; \
>         fi
> ----

-- 
John Baldwin


More information about the freebsd-hackers mailing list