diff options
author | nwhitehorn <nwhitehorn@FreeBSD.org> | 2011-03-02 14:39:26 +0000 |
---|---|---|
committer | nwhitehorn <nwhitehorn@FreeBSD.org> | 2011-03-02 14:39:26 +0000 |
commit | a8c9f18299da1bf825c6a1fdbce273c58137524f (patch) | |
tree | 7614655486ed54841482c8143b6c735f775ce4b0 /release/Makefile | |
parent | 8eacafea122b877adb3f474b46942309a1303f68 (diff) | |
download | FreeBSD-src-a8c9f18299da1bf825c6a1fdbce273c58137524f.zip FreeBSD-src-a8c9f18299da1bf825c6a1fdbce273c58137524f.tar.gz |
Improve the distributeworld target in Makefile.inc1 and update the release
infrastructure to use it. make distributeworld can now be used without
preparing its environment first and installs games into its distribution
using the regular make distribute logic instead of post-processing with
a script.
Also add two new targets, packageworld and packagekernel, that tar up the
results of distributeworld and distributekernel (also new), respectively.
Diffstat (limited to 'release/Makefile')
-rw-r--r-- | release/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/release/Makefile b/release/Makefile index c95b8f4..30b61b0 100644 --- a/release/Makefile +++ b/release/Makefile @@ -194,8 +194,8 @@ DIST_DOCS_ARCH_DEP= # Things which without too much trouble can be considered variables # BASE_DISTS are special in that they get full /etc installation sets. # -OTHER_DISTS?= catpages manpages games proflibs dict info doc ${ARCH_DISTS} -BASE_DISTS?= base +OTHER_DISTS?= catpages manpages proflibs dict info +BASE_DISTS?= base doc games ${ARCH_DISTS} .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64" ARCH_DISTS?= lib32 .endif @@ -647,9 +647,7 @@ release.1: mtree -deU -f ${MTREEFILES}/BSD.usr.dist \ -p ${RD}/trees/$$i/usr > /dev/null && \ mtree -deU -f ${MTREEFILES}/BSD.include.dist \ - -p ${RD}/trees/$$i/usr/include > /dev/null && \ - mtree -deU -f ${MTREEFILES}/BSD.var.dist \ - -p ${RD}/trees/$$i/var > /dev/null ; \ + -p ${RD}/trees/$$i/usr/include > /dev/null; \ done mkdir ${RD}/kernels for i in ${KERNELS_BASE} ${KERNELS}; do \ |