Subject: Re: what makes /usr/include/g++/ directories?
To: None <current-users@NetBSD.org>
From: Jeremy C. Reed <reed@reedmedia.net>
List: current-users
Date: 08/02/2006 12:57:45
> > What makes the /usr/include/g++/ directories?
>
> src/etc/Makefile:
>
> [..]
> distrib-dirs: .PHONY check_DESTDIR
> [..]
> ${TOOL_MTREE} -def ${.CURDIR}/mtree/NetBSD.dist -N ${.CURDIR} \
> -p ${DESTDIR}/ -U ${TOOL_MTREE.unpriv}
> [..]
> .if ${MKUNPRIVED} != "no" # {
> ${TOOL_MTREE} -def ${.CURDIR}/mtree/NetBSD.dist -N ${.CURDIR} \
> -p ${DESTDIR}/ -C -k all | \
> awk '/ optional/ {next} // {print}' | ${METALOG.add}
> .endif # MKUNPRIVED # }
> [..]
Thanks. I see the directories I needed were added back in May to
NetBSD.dist.
I didn't think NetBSD.dist was for this since the "make includes" does do
many "mkdir -p" for many include directories also.
Should "make includes" do the "distrib-dirs" target first?
Or is it not normal to run "make includes"?