diff options
-rwxr-xr-x | data/live-build-config/hooks/live/80-delete-docs.chroot | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/data/live-build-config/hooks/live/80-delete-docs.chroot b/data/live-build-config/hooks/live/80-delete-docs.chroot index ce18bc8f..33a6bf74 100755 --- a/data/live-build-config/hooks/live/80-delete-docs.chroot +++ b/data/live-build-config/hooks/live/80-delete-docs.chroot @@ -4,3 +4,8 @@ # Copyright/licenses files are ignored for deletion shopt -s extglob rm -rf /usr/share/doc/*/!(copyright*|README*) /usr/share/doc-base + +# We also do not need any manpages on the system since man-binary is missing. +# This also frees some space. +rm -rf /usr/share/man + |