Changeset f6180d2 for scripts/scripts/cross-scripts/cross-glibc-full.sh
- Timestamp:
- Mar 10, 2006, 3:03:56 AM (19 years ago)
- Branches:
- clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
- Children:
- 0019206
- Parents:
- a8a1084
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
scripts/scripts/cross-scripts/cross-glibc-full.sh
ra8a1084 rf6180d2 64 64 # if we don't have linuxthreads dirs (ie: a glibc release), then 65 65 # unpack the linuxthreads tarball 66 if [ ! -d linuxthreads -o ! -d linuxthreads_db ]; then 67 OLDPKGDIR=${PKGDIR} ; unpack_tarball glibc-linuxthreads-${GLIBC_VER} 68 PKGDIR=${OLDPKGDIR} 69 fi 66 case ${GLIBC_VER} in 67 2.4 | 2.4.* ) ;; 68 * ) 69 if [ ! -d linuxthreads -o ! -d linuxthreads_db ]; then 70 OLDPKGDIR=${PKGDIR} ; unpack_tarball glibc-linuxthreads-${GLIBC_VER} 71 PKGDIR=${OLDPKGDIR} 72 fi 73 ;; 74 esac 70 75 71 76 # unpack libidn add-on if required (should be supplied with cvs versions) 77 if [ "${USE_LIBIDN}" = "Y" ]; then 72 78 case ${target_glibc_ver} in 73 79 2.3.[4-9]* | 2.4* ) … … 79 85 ;; 80 86 esac 87 fi 81 88 82 89 # apply glibc patches as required depending on the above gcc/kernel versions
Note:
See TracChangeset
for help on using the changeset viewer.