Changeset 22023
- Timestamp:
- 08/30/17 12:42:49 (8 years ago)
- Location:
- issm/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk/aux-config/ar-lib ¶
r18081 r22023 227 227 $AR -NOLOGO -LIST "$archive" | sed -e 's/\\/\\\\/g' | while read member 228 228 do 229 $AR -NOLOGO -EXTRACT:"$ member" "$archive" || exit $?229 $AR -NOLOGO -EXTRACT:"$(echo $member | tr -d '\r')" "$archive" || exit $? 230 230 done 231 231 fi -
TabularUnified issm/trunk/externalpackages/autotools/install-win.sh ¶
r20500 r22023 6 6 7 7 export PATH="$ISSM_DIR/externalpackages/autotools/install/bin:$PATH" 8 9 #install m4 10 echo " === INSTALLING M4 ==" 11 rm -rf src 12 $ISSM_DIR/scripts/DownloadExternalPackage.py 'http://issm.jpl.nasa.gov/files/externalpackages/m4-1.4.17.tar.gz' 'm4-1.4.17.tar.gz' 13 tar -zxvf m4-1.4.17.tar.gz 14 mv m4-1.4.17 src 15 cd src 16 ./configure --prefix="$ISSM_DIR/externalpackages/autotools/install" 17 make 18 make install 19 cd .. 8 20 9 21 #install autoconf
Note:
See TracChangeset
for help on using the changeset viewer.