diff options
author | nwhitehorn <nwhitehorn@FreeBSD.org> | 2011-06-15 23:38:15 +0000 |
---|---|---|
committer | nwhitehorn <nwhitehorn@FreeBSD.org> | 2011-06-15 23:38:15 +0000 |
commit | 4049e0f7dd71a3c7bbda0f0a54aa4f58359856b4 (patch) | |
tree | aaa2b952800f7e64bba1da5a87ce11c48d756157 /release/Makefile | |
parent | dc6fca7b3ac89d3d25ef631eef77b284031e509e (diff) | |
download | FreeBSD-src-4049e0f7dd71a3c7bbda0f0a54aa4f58359856b4.zip FreeBSD-src-4049e0f7dd71a3c7bbda0f0a54aa4f58359856b4.tar.gz |
Do not install the rescue tools onto the install CD. Since it is read
only, they are very unlikely to be needed and take up a great deal of
space.
Diffstat (limited to 'release/Makefile')
-rw-r--r-- | release/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/release/Makefile b/release/Makefile index 081cdbf..96bfac2 100644 --- a/release/Makefile +++ b/release/Makefile @@ -110,7 +110,8 @@ reldoc: system: packagesystem # Install system -mkdir ${.OBJDIR}/release - cd ${WORLDDIR} && ${IMAKE} installkernel installworld distribution DESTDIR=${.OBJDIR}/release + cd ${WORLDDIR} && ${IMAKE} installkernel installworld distribution \ + DESTDIR=${.OBJDIR}/release WITHOUT_RESCUE=1 -rm ${.OBJDIR}/release/boot/kernel/*.symbols # Copy distfiles mkdir ${.OBJDIR}/release/usr/freebsd-dist |