scripts/build/libc/glibc.sh
changeset 1761 88020b2c3246
parent 1759 2e4f5f564362
child 1762 7c71e1b5e3ab
     1.1 --- a/scripts/build/libc/glibc.sh	Mon Jan 11 22:47:58 2010 +0100
     1.2 +++ b/scripts/build/libc/glibc.sh	Tue Jan 12 19:24:03 2010 +0100
     1.3 @@ -38,13 +38,13 @@
     1.4      CT_Extract "glibc-${CT_LIBC_VERSION}"
     1.5  
     1.6      CT_Pushd "${CT_SRC_DIR}/glibc-${CT_LIBC_VERSION}"
     1.7 -    CT_Patch "glibc-${CT_LIBC_VERSION}" nochdir
     1.8 +    CT_Patch nochdir "glibc-${CT_LIBC_VERSION}"
     1.9  
    1.10      # C library addons
    1.11      for addon in "${addons_list[@]}"; do
    1.12          # NPTL addon is not to be extracted, in any case
    1.13          [ "${addon}" = "nptl" ] && continue || true
    1.14 -        CT_Extract "glibc-${addon}-${CT_LIBC_VERSION}" nochdir
    1.15 +        CT_Extract nochdir "glibc-${addon}-${CT_LIBC_VERSION}"
    1.16  
    1.17          # Some addons have the 'long' name, while others have the
    1.18          # 'short' name, but patches are non-uniformly built with
    1.19 @@ -54,7 +54,7 @@
    1.20          # directory, returns true!
    1.21          [ -d "${addon}" ] || CT_DoExecLog ALL ln -s "glibc-${addon}-${CT_LIBC_VERSION}" "${addon}"
    1.22          [ -d "glibc-${addon}-${CT_LIBC_VERSION}" ] || CT_DoExecLog ALL ln -s "${addon}" "glibc-${addon}-${CT_LIBC_VERSION}"
    1.23 -        CT_Patch "glibc-${addon}-${CT_LIBC_VERSION}" nochdir
    1.24 +        CT_Patch nochdir "glibc-${addon}-${CT_LIBC_VERSION}"
    1.25      done
    1.26  
    1.27      # The configure files may be older than the configure.in files