summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2018-12-15 02:50:51 (GMT)
committerAlexey Neyman <stilor@att.net>2018-12-15 02:50:51 (GMT)
commite46f6d9966770ddf0ddebf10af22237186f70219 (patch)
treed68c23cd40fb881c7fad34f74e4f9d0222c15d39 /scripts
parentde48268390eacb4a3e69c7d504e618a45d2a19eb (diff)
Use "package ksym" when fetching/extracting
... in the default implementation of the fetch/extract methods. Fixes #1116. Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/build/libc.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/build/libc.sh b/scripts/build/libc.sh
index fb1ebe5..0d03bf0 100644
--- a/scripts/build/libc.sh
+++ b/scripts/build/libc.sh
@@ -4,8 +4,8 @@
# Define default hooks - download/unpack just the main package; no-op build hooks.
# The actual implementation can override just what it needs then.
-eval "${CT_LIBC//[^A-Za-z0-9]/_}_get() { CT_Fetch ${CT_LIBC_CHOICE_KSYM}; }"
-eval "${CT_LIBC//[^A-Za-z0-9]/_}_extract() { CT_ExtractPatch ${CT_LIBC_CHOICE_KSYM}; }"
+eval "${CT_LIBC//[^A-Za-z0-9]/_}_get() { CT_Fetch \"\${CT_LIBC_${CT_LIBC_CHOICE_KSYM}_PKG_KSYM}\"; }"
+eval "${CT_LIBC//[^A-Za-z0-9]/_}_extract() { CT_ExtractPatch \"\${CT_LIBC_${CT_LIBC_CHOICE_KSYM}_PKG_KSYM}\"; }"
for _m in start_files main post_cc; do
eval "${CT_LIBC//[^A-Za-z0-9]/_}_${_m}() { :; }"
done