mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-20 05:17:54 +00:00
1c81b216c8
There is a variable that contains the headers directory, so there's no need to re-compute it again. [Yann E. MORIN: split the original patch]
28 lines
697 B
Bash
28 lines
697 B
Bash
# This file declares functions to install the kernel headers for mingw
|
|
# Copyright 2009 Bart vdr. Meulen
|
|
# Licensed under the GPL v2. See COPYING in the root of this package
|
|
|
|
CT_DoKernelTupleValues() {
|
|
CT_TARGET_KERNEL="mingw32"
|
|
CT_TARGET_SYS=
|
|
}
|
|
|
|
do_kernel_get() {
|
|
CT_GetFile "w32api-${CT_W32API_VERSION}-mingw32-src" \
|
|
http://downloads.sourceforge.net/sourceforge/mingw
|
|
}
|
|
|
|
do_kernel_extract() {
|
|
CT_Extract "w32api-${CT_W32API_VERSION}-mingw32-src"
|
|
}
|
|
|
|
do_kernel_headers() {
|
|
CT_DoStep INFO "Installing kernel headers"
|
|
|
|
mkdir -p "${CT_HEADERS_DIR}"
|
|
cp -r ${CT_SRC_DIR}/w32api-${CT_W32API_VERSION}-mingw32/include/* \
|
|
${CT_HEADERS_DIR}
|
|
|
|
CT_EndStep
|
|
}
|