diff --git a/scripts/functions b/scripts/functions index 5874c854..c6308c66 100644 --- a/scripts/functions +++ b/scripts/functions @@ -2508,7 +2508,7 @@ CT_InstallCopyingInformation() CT_DoLog EXTRA "Collect license information from: ${CT_SRC_DIR}" CT_DoLog EXTRA "Put the license information to: ${CT_PREFIX_DIR}/share/licenses" - for licfile in $( find "${CT_SRC_DIR}" -follow -type f -a \( -name "COPYING*" -o -name "LICENSE*" \) ); do + for licfile in $( find "${CT_SRC_DIR}" -follow -type f -a \( -name "COPYING*" -o -name "LICENSE*" -o -name "COPYRIGHT*" \) ); do dstdir="${licfile%/*}" dstdir="${CT_PREFIX_DIR}/share/licenses${dstdir#${CT_SRC_DIR}}" mkdir -p "${dstdir}"