Split the packages target into stage-packages and create-packages to make
it possible to roll new packages from an existing build without having to restage them.
This commit is contained in:
parent
ca832df486
commit
ee1627c4db
5
Makefile
5
Makefile
@ -126,8 +126,9 @@ TGTS= all all-man buildenv buildenvvars buildkernel buildworld \
|
||||
_worldtmp _legacy _bootstrap-tools _cleanobj _obj \
|
||||
_build-tools _cross-tools _includes _libraries _depend \
|
||||
build32 builddtb distribute32 install32 xdev xdev-build xdev-install \
|
||||
xdev-links native-xtools create-kernel-packages stageworld stagekernel \
|
||||
create-world-packages packages installconfig signpackages
|
||||
xdev-links native-xtools stageworld stagekernel stage-packages \
|
||||
create-world-packages create-kernel-packages create-packages \
|
||||
packages installconfig signpackages
|
||||
|
||||
TGTS+= ${SUBDIR_TARGETS}
|
||||
|
||||
|
@ -1374,11 +1374,17 @@ _pkgbootstrap:
|
||||
@env ASSUME_ALWAYS_YES=YES pkg bootstrap
|
||||
.endif
|
||||
|
||||
packages: _pkgbootstrap
|
||||
@mkdir -p ${WSTAGEDIR} ${KSTAGEDIR} ${REPODIR}
|
||||
packages: stage-packages create-packages
|
||||
|
||||
stage-packages:
|
||||
@mkdir -p ${WSTAGEDIR} ${KSTAGEDIR}
|
||||
${_+_}@cd ${.CURDIR}; \
|
||||
${MAKE} DESTDIR=${DESTDIR:U${WSTAGEDIR}} -DNO_ROOT -B stageworld ; \
|
||||
${MAKE} DESTDIR=${DESTDIR:U${KSTAGEDIR}} -DNO_ROOT -B stagekernel ; \
|
||||
${MAKE} DESTDIR=${DESTDIR:U${KSTAGEDIR}} -DNO_ROOT -B stagekernel
|
||||
|
||||
create-packages: _pkgbootstrap
|
||||
@mkdir -p ${REPODIR}
|
||||
${_+_}@cd ${.CURDIR}; \
|
||||
${MAKE} DESTDIR=${DESTDIR:U${WSTAGEDIR}} \
|
||||
PKG_VERSION=${PKG_VERSION} create-world-packages ; \
|
||||
${MAKE} DESTDIR=${DESTDIR:U${KSTAGEDIR}} \
|
||||
|
Loading…
Reference in New Issue
Block a user