From 8fe21d70a249e2c6312bf3e4ea13e770ae18a89c Mon Sep 17 00:00:00 2001 From: Alexey Neyman Date: Wed, 7 Nov 2018 12:23:05 -0800 Subject: Make license collection optional, on by default Signed-off-by: Alexey Neyman diff --git a/config/global/paths.in b/config/global/paths.in index b4e93ee..7c6c30c 100644 --- a/config/global/paths.in +++ b/config/global/paths.in @@ -85,6 +85,15 @@ config BUILD_MANUALS Build the PDF and HTML manuals for the main components such as binutils, GCC, GDB, and the C library. +config INSTALL_LICENSES + bool "Install licenses" + default y + help + Collect the license files for all the components that went into + producing this toolchain (including the crosstool-NG itself) + and place them in /share/licenses directory within the prefix + directory. + config PREFIX_DIR_RO bool prompt "Render the toolchain read-only" diff --git a/scripts/build/internals.sh b/scripts/build/internals.sh index f7107b4..3cd5eeb 100644 --- a/scripts/build/internals.sh +++ b/scripts/build/internals.sh @@ -144,7 +144,9 @@ do_finish() { CT_DoForceRmdir "${CT_DEBUGROOT_DIR}/"{,usr/}{,share/}{man,info} fi - CT_InstallCopyingInformation + if [ "${CT_INSTALL_LICENSES}" = y ]; then + CT_InstallCopyingInformation + fi CT_EndStep } -- cgit v0.10.2-6-g49f6