summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2018-11-12 20:47:08 (GMT)
committerGitHub <noreply@github.com>2018-11-12 20:47:08 (GMT)
commit710c8e0d8e2f77ec594160af6739b66f2755b855 (patch)
treeefaf5f9dce421caff012ccf99af3978bacbb3c0d
parentfad46ac9d1504a90590cf585a700656e1b58e513 (diff)
parent35bec76b6371057746ac11ac25cffab75b8641db (diff)
Merge pull request #1094 from stilor/license-install-fixes
Fix installation of the license file
-rw-r--r--Makefile.am2
-rwxr-xr-xbootstrap2
-rw-r--r--ct-ng.in1
-rw-r--r--scripts/functions18
-rw-r--r--scripts/scripts.mk8
5 files changed, 14 insertions, 17 deletions
diff --git a/Makefile.am b/Makefile.am
index 92b8af5..92ee910 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -67,6 +67,8 @@ install-data-hook:
gzip -9 $(DESTDIR)$(man1dir)/$(ctng_progname).1
chmod a+x $(DESTDIR)$(pkgdatadir)/scripts/config.guess
chmod a+x $(DESTDIR)$(pkgdatadir)/scripts/config.sub
+ rm -f $(DESTDIR)$(pkgdatadir)/LICENSE
+ ln -s COPYING $(DESTDIR)$(pkgdatadir)/LICENSE
if INSTALL_BASH_COMPLETION
chmod a-x $(DESTDIR)$(compdir)/$(ctng_progname)
endif
diff --git a/bootstrap b/bootstrap
index e4a207b..2d398e1 100755
--- a/bootstrap
+++ b/bootstrap
@@ -742,7 +742,7 @@ msg "*** Gathering the list of data files to install"
{
declare -A seen_files
echo -n "verbatim_data ="
- find config contrib packages samples scripts -type f | LANG=C sort | while read f; do
+ find COPYING config contrib licenses.d packages samples scripts -type f | LANG=C sort | while read f; do
# Implement some kind of .installignore for these files?
case "${f}" in
# Skip certain files not needed at runtime (used above for generating kconfig
diff --git a/ct-ng.in b/ct-ng.in
index b99848f..e93393b 100644
--- a/ct-ng.in
+++ b/ct-ng.in
@@ -20,6 +20,7 @@ ifeq (@enable_local@,yes)
export CT_LIB_DIR:=$(patsubst %/,%,$(dir $(CT_NG)))
export CT_LIBEXEC_DIR:=$(CT_LIB_DIR)/kconfig
export CT_DOC_DIR:=$(CT_LIB_DIR)/docs
+export CT_LICENSE_DIR
else
# Paths and values set by ./configure
# Don't bother to change it other than with a new ./configure!
diff --git a/scripts/functions b/scripts/functions
index 491c759..7150b5b 100644
--- a/scripts/functions
+++ b/scripts/functions
@@ -2402,27 +2402,21 @@ fi
CT_InstallCopyingInformation()
{
- local pkgname
- local pkgdir
local licfile
local dstdir
CT_DoLog EXTRA "Collect license information from: ${CT_SRC_DIR}"
CT_DoLog EXTRA "Put the license information to: ${CT_PREFIX_DIR}/share/licenses"
- shopt -s nullglob
-
- for pkgdir in ${CT_SRC_DIR}/*; do
- pkgname=$(basename "${pkgdir}")
- for licfile in ${pkgdir}/{COPYING*,LICENSE*}; do
- dstdir="${CT_PREFIX_DIR}/share/licenses/${pkgname}"
- mkdir -p "${dstdir}"
- CT_DoExecLog ALL cp -av "${licfile}" "${dstdir}/"
- done
+ for licfile in $( find "${CT_SRC_DIR}" -follow -type f -a \( -name "COPYING*" -o -name "LICENSE*" \) ); do
+ dstdir="${licfile%/*}"
+ dstdir="${CT_PREFIX_DIR}/share/licenses${dstdir#${CT_SRC_DIR}}"
+ mkdir -p "${dstdir}"
+ CT_DoExecLog ALL cp -av "${licfile}" "${dstdir}/"
done
# Also add crosstool's information
- for licfile in ${CT_TOP_DIR}/{COPYING*,LICENSE*,licenses.d}; do
+ for licfile in ${CT_LIB_DIR}/{COPYING*,LICENSE*,licenses.d}; do
dstdir="${CT_PREFIX_DIR}/share/licenses/crosstool-ng"
mkdir -p "${dstdir}"
CT_DoExecLog ALL cp -av "${licfile}" "${dstdir}/"
diff --git a/scripts/scripts.mk b/scripts/scripts.mk
index d77f1a7..eeb8a50 100644
--- a/scripts/scripts.mk
+++ b/scripts/scripts.mk
@@ -31,11 +31,11 @@ ifneq ($(strip $(V)),2)
curl_silent_opt = --silent
endif
-ifneq ($(CT_wget),)
-download_cmd = $(CT_wget) --passive-ftp $(wget_silent_opt) -O $@
+ifneq ($(CT_WGET),)
+download_cmd = $(CT_WGET) --passive-ftp $(wget_silent_opt) -O $@
else
-ifneq ($(CT_curl),)
-download_cmd = $(CT_curl) --ftp-pasv $(curl_silent_opt) -o $@
+ifneq ($(CT_CURL),)
+download_cmd = $(CT_CURL) --ftp-pasv $(curl_silent_opt) -o $@
else
download_cmd = $(error wget or curl needed for downloads)
endif