cvs commit: src/lib/libc Makefile
Matthew Dillon
dillon at apollo.backplane.com
Sun Jun 6 12:22:29 PDT 2004
:hmp 2004/06/06 06:30:33 PDT
:
:DragonFly src repository
:
: Modified files:
: lib/libc Makefile
: Log:
: Do not use the installed include files, instead, set the include path
: to ${.CURDIR}/../../include; so that the right version is used.
:
: Revision Changes Path
: 1.3 +3 -2 src/lib/libc/Makefile
:
:
:http://www.dragonflybsd.org/cvsweb/src/lib/libc/Makefile.diff?r1=1.2&r2=1.3&f=u
I don't think you want to do this. The base directory for the includes
is set by other mechanisms, so e.g. when you are doing a buildworld it will
in fact use the correct include directories.
What you are doing here is adding a weird override to that which could
mess up other parts of the build.
If someone types 'make' in /usr/src/lib, just as when someone types
'make' in /usr/src/bin/ or anywhere else... the intention is to use
the installed includes. We don't want to special-case libc to act
differently from other parts of the build.
-Matt
Matthew Dillon
<dillon at xxxxxxxxxxxxx>
More information about the Commits
mailing list