# HG changeset patch # User "Yann E. MORIN" # Date 1179784888 0 # Node ID 2dace56fc87e543212695cb45057fedb5f31b133 # Parent 0a1e72093a51e526d7143d73f778842e0c695905 Move the config script for the build dir to the source dir. That will be useful when we have the restart functionality. diff -r 0a1e72093a51 -r 2dace56fc87e scripts/build/libc_uClibc.sh --- a/scripts/build/libc_uClibc.sh Sun May 20 16:18:40 2007 +0000 +++ b/scripts/build/libc_uClibc.sh Mon May 21 22:01:28 2007 +0000 @@ -32,7 +32,7 @@ CT_TestOrAbort "You did not provide a uClibc config file!" -n "${CT_LIBC_UCLIBC_CONFIG_FILE}" -a -f "${CT_LIBC_UCLIBC_CONFIG_FILE}" - cp "${CT_LIBC_UCLIBC_CONFIG_FILE}" "${CT_BUILD_DIR}/uClibc.config" + cp "${CT_LIBC_UCLIBC_CONFIG_FILE}" "${CT_SRC_DIR}/uClibc.config" if egrep '^KERNEL_SOURCE=' "${CT_LIBC_UCLIBC_CONFIG_FILE}" >/dev/null 2>&1; then CT_DoLog WARN "Your uClibc version refers to the kernel _sources_, which is bad." @@ -40,7 +40,7 @@ fi CT_DoLog EXTRA "Munging uClibc configuration" - mungeuClibcConfig "${CT_BUILD_DIR}/uClibc.config" + mungeuClibcConfig "${CT_SRC_DIR}/uClibc.config" CT_EndStep } @@ -61,7 +61,7 @@ { cd "${CT_SRC_DIR}/${CT_LIBC_FILE}"; tar cf - .; } |tar xf - # Retrieve the config file - cp "${CT_BUILD_DIR}/uClibc.config" .config + cp "${CT_SRC_DIR}/uClibc.config" .config # uClibc uses the CROSS environment variable as a prefix to the # compiler tools to use. Setting it to the empty string forces @@ -91,7 +91,7 @@ { cd "${CT_SRC_DIR}/${CT_LIBC_FILE}"; tar cf - .; } |tar xf - # Retrieve the config file - cp "${CT_BUILD_DIR}/uClibc.config" .config + cp "${CT_SRC_DIR}/uClibc.config" .config # uClibc uses the CROSS environment variable as a prefix to the compiler # tools to use. The newly built tools should be in our path, so we need