- Timestamp:
- Jul 16, 2011 7:39:03 AM (10 years ago)
- Location:
- stable/0.6
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable/0.6
-
stable/0.6/compile_f2c
- Property svn:mergeinfo changed (with no actual effect on merging)
-
stable/0.6/run_autotools
r1957 r2366 107 107 108 108 grep_version=`echo $ver_autoconf | sed -e 's/\\./\\\\\\./g'` 109 autoconf --version > confauto.out 2>&1 109 if autoconf --version > confauto.out 2>&1 ; then : ; else 110 echo "autoconf $ver_autoconf not available" 111 rm -f confauto.out 112 exit 2 113 fi 110 114 if $EGREP $grep_version confauto.out >/dev/null 2>&1; then :; else 111 115 echo You are not using the correct version of autoconf … … 122 126 123 127 grep_version=`echo $ver_automake | sed -e 's/\\./\\\\\\./g'` 124 automake --version > confauto.out 2>&1 128 if automake --version > confauto.out 2>&1 ; then : ; else 129 echo "automake $ver_automake not available" 130 rm -f confauto.out 131 exit 2 132 fi 125 133 if $EGREP $grep_version confauto.out >/dev/null 2>&1; then :; else 126 134 echo You are not using the correct version of automake … … 142 150 ltfile=$AUTOTOOLS_DIR/share/libtool/ltmain.sh 143 151 if test -r $ltfile; then :; else 144 echo WARNING: Cannot fi lelibtool shell $ltfile152 echo WARNING: Cannot find libtool shell $ltfile 145 153 fi 146 154 if $EGREP $grep_version $ltfile >/dev/null 2>&1; then :; else
Note: See TracChangeset
for help on using the changeset viewer.