mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-03 08:22:44 +00:00
This is the very small start of moving all the make release related stuff
from etc/Makefile to release/Makefile. Right now this has one target (hieriarchy:) that replaces distrib-dirs:.
This commit is contained in:
parent
3e9ab531ca
commit
0202c140bb
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=3027
20
release/Makefile
Normal file
20
release/Makefile
Normal file
@ -0,0 +1,20 @@
|
||||
# $Id$
|
||||
#
|
||||
|
||||
MTREE_DIR= ${.CURDIR}/../etc/mtree
|
||||
|
||||
hieriarchy:
|
||||
# If this exits with an error code of 2 your file hieriarchy was
|
||||
# modified for some reason, please read the mtree output to understand
|
||||
# what was changed, then run the command again.
|
||||
#
|
||||
# XXX This will currently error out if you have a procfs mounted,
|
||||
# unmount it to get past this problem until procfs is fixed.
|
||||
#
|
||||
mtree -deu -f ${MTREE_DIR}/BSD.root.dist -p ${DESTDIR}/
|
||||
mtree -deu -f ${MTREE_DIR}/BSD.var.dist -p ${DESTDIR}/var
|
||||
mtree -deu -f ${MTREE_DIR}/BSD.usr.dist -p ${DESTDIR}/usr
|
||||
.if defined(MAKE_LOCAL)
|
||||
mtree -deu -f ${MTREE_DIR}/BSD.local.dist -p ${DESTDIR}/usr/local
|
||||
.endif
|
||||
cd ${DESTDIR}/ && rm -f ${DESTDIR}/sys && ln -s usr/src/sys sys
|
Loading…
Reference in New Issue
Block a user