diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-09-06 12:38:52 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-09-06 12:38:52 +0000 |
commit | 0bee99ed389b8ffbdf5d9903daece3d491659f25 (patch) | |
tree | 4a76e32aae8a8db858a210e446263ad3363672f7 /scripts/functions | |
parent | 1cf24eb2a4396142048f1a5d0ee8eb0a19ea82d1 (diff) | |
download | crosstool-ng-0bee99ed389b8ffbdf5d9903daece3d491659f25.tar.gz crosstool-ng-0bee99ed389b8ffbdf5d9903daece3d491659f25.tar.bz2 crosstool-ng-0bee99ed389b8ffbdf5d9903daece3d491659f25.zip |
Add a patch to enqable NPTL build on ARM OABI with glibc-2.6.1.
Fix a comment.
Diffstat (limited to 'scripts/functions')
-rw-r--r-- | scripts/functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/functions b/scripts/functions index b7211a49..eebe8864 100644 --- a/scripts/functions +++ b/scripts/functions @@ -435,7 +435,7 @@ CT_ExtractAndPatch() { if [ "${libc_addon}" = "y" ]; then # Some addons tarball directly contian the correct addon directory, # while others have the addon directory named ofter the tarball. - # Fix that bu always using the short name (eg: linuxthreads, ports, etc...) + # Fix that by always using the short name (eg: linuxthreads, ports, etc...) addon_short_name=`echo "${file}" |sed -r -e 's/^[^-]+-//; s/-[^-]+$//;'` [ -d "${addon_short_name}" ] || ln -s "${file}" "${addon_short_name}" # If libc addon, we're already in the correct place |