Changeset 167f981
- Timestamp:
- Jun 6, 2009, 11:30:36 AM (15 years ago)
- Branches:
- clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
- Children:
- c3cd569a
- Parents:
- 3d79fa8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
scripts/fetch/eglibc.sh
r3d79fa8 r167f981 15 15 exit 255 16 16 fi 17 18 # Clear out old Directory 19 # 20 rm -rf ~/tmp 17 21 18 22 # Get Current Eglibc from SVN … … 34 38 # Remove Files not needed 35 39 # 40 cd ~/tmp/eglibc-${SOURCEVERSION} 36 41 FILE_LIST=".cvsignore" 37 42 for files in ${FILE_LIST}; do … … 44 49 # Fix configuration files 45 50 # 51 cd ~/tmp/eglibc-${SOURCEVERSION} 46 52 echo "Updating Glibc configure files..." 47 53 find . -name configure -exec touch {} \; 48 54 55 # Change gcc to BUILD_CC in the following files 56 # 57 cd ~/tmp/eglibc-${SOURCEVERSION}/libc 58 FIX_FILES="sunrpc/Makefile timezone/Makefile" 59 for fix_file in ${FIX_FILES}; do 60 sed -i "s/gcc/\'$\(BUILD_CC\)'/g" ${fix_file} 61 done 62 49 63 # Compress 50 64 # 65 cd ~/tmp/eglibc-${SOURCEVERSION} 51 66 echo "Creating Tarball for Eglibc Ports ${SOURCEVERSION}...." 52 67 tar cjf ~/public_html/eglibc-ports-${SOURCEVERSION}.tar.bz2 ports
Note:
See TracChangeset
for help on using the changeset viewer.