Bootstrap pwd_mkdb(8) and use its new feature during "make distribute".

This commit is contained in:
Ruslan Ermilov 2005-02-28 22:55:43 +00:00
parent a09150446d
commit 0c5397aa69
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=142838
2 changed files with 10 additions and 2 deletions

View File

@ -796,6 +796,10 @@ _mklocale= usr.bin/mklocale
_crunchgen= usr.sbin/crunch/crunchgen
.endif
.if ${BOOTSTRAPPING} < 600020
_pwd_mkdb= usr.sbin/pwd_mkdb
.endif
bootstrap-tools:
.for _tool in \
${_strfile} \
@ -811,7 +815,8 @@ bootstrap-tools:
usr.bin/rpcgen \
usr.bin/xinstall \
usr.sbin/config \
${_crunchgen}
${_crunchgen} \
${_pwd_mkdb}
${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
cd ${.CURDIR}/${_tool}; \
${MAKE} DIRPRFX=${_tool}/ obj; \

View File

@ -76,8 +76,10 @@ distribute:
.include <bsd.endian.mk>
.if ${TARGET_ENDIANNESS} == "1234"
CAP_MKDB_ENDIAN= -l
PWD_MKDB_ENDIAN= -L
.elif ${TARGET_ENDIANNESS} == "4321"
CAP_MKDB_ENDIAN= -b
PWD_MKDB_ENDIAN= -B
.else
CAP_MKDB_ENDIAN=
.endif
@ -91,7 +93,8 @@ distribution:
${BIN2} ${DESTDIR}/etc; \
${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 \
master.passwd nsmb.conf opieaccess ${DESTDIR}/etc; \
pwd_mkdb -p -d ${DESTDIR}/etc ${DESTDIR}/etc/master.passwd
pwd_mkdb ${PWD_MKDB_ENDIAN} -p -d ${DESTDIR}/etc \
${DESTDIR}/etc/master.passwd
cd ${.CURDIR}/bluetooth; ${MAKE} install
cd ${.CURDIR}/defaults; ${MAKE} install
cd ${.CURDIR}/periodic; ${MAKE} install