mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
libc_gen/basename.c depends on include/libgen.h.
This commit is contained in:
parent
d75de53699
commit
7552a592f4
2 changed files with 4 additions and 3 deletions
|
|
@ -625,6 +625,7 @@ legacy:
|
|||
@${ECHODIR} "===> ${_tool}"; \
|
||||
cd ${.CURDIR}/${_tool}; \
|
||||
${MAKE} DIRPRFX=${_tool}/ obj; \
|
||||
${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes; \
|
||||
${MAKE} DIRPRFX=${_tool}/ depend; \
|
||||
${MAKE} DIRPRFX=${_tool}/ all; \
|
||||
${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
|
||||
|
|
|
|||
|
|
@ -31,9 +31,9 @@ INCS+= stdbool.h
|
|||
INCS+= langinfo.h
|
||||
.endif
|
||||
|
||||
# gnu/usr.bin/binutils/libiberty needs basename(3).
|
||||
.if ( ${BOOTSTRAPPING} < 440000 || \
|
||||
( ${BOOTSTRAPPING} >= 500000 && ${BOOTSTRAPPING} < 500022 ))
|
||||
# Some tools need basename(3).
|
||||
.if !exists(/usr/include/libgen.h)
|
||||
INCS+= libgen.h
|
||||
.PATH: ${.CURDIR}/../../lib/libc/gen
|
||||
SRCS+= basename.c
|
||||
.endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue