mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-04-07 19:34:17 +00:00
libc/glibc: fix installing syscall.h when installing start-files.
Reported-by: Rafael C <groups.r2@gmail.com> Reported-by: Jérôme BARDON <bardon.pro@gmail.com> Reported-by: Daniel Price <daniel.price@gmail.com> [yann.morin.1998@free.fr: use a conditional approach, also suggested by Daniel] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
This commit is contained in:
parent
a5491bd775
commit
75e7c5bc1b
@ -404,8 +404,15 @@ do_libc_backend_once() {
|
||||
# but it breaks arm, see http://sourceware.org/ml/crossgcc/2006-01/msg00091.html
|
||||
case "${CT_ARCH}" in
|
||||
arm) ;;
|
||||
*) CT_DoExecLog ALL cp -v "misc/syscall-list.h" \
|
||||
"${CT_HEADERS_DIR}/bits/syscall.h"
|
||||
*) if [ -f "misc/bits/syscall.h" ]; then
|
||||
CT_DoExecLog ALL cp -v "misc/bits/syscall.h" \
|
||||
"${CT_HEADERS_DIR}/bits/syscall.h"
|
||||
else
|
||||
# "Old" glibces do not have the above file,
|
||||
# but provide this one:
|
||||
CT_DoExecLog ALL cp -v "misc/syscall-list.h" \
|
||||
"${CT_HEADERS_DIR}/bits/syscall.h"
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
Loading…
x
Reference in New Issue
Block a user