- Timestamp:
- Jan 6, 2011 5:13:05 AM (10 years ago)
- Location:
- stable/0.6
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
stable/0.6
- Property svn:mergeinfo changed
/trunk merged: 2069,2071-2072
- Property svn:mergeinfo changed
-
stable/0.6/commit_new_release
r1957 r2073 45 45 46 46 # Process the parameters. A parameter without an opening `-' is assumed to be 47 # the spec for the directory to be committed. 47 # the spec for the directory to be committed. (Strip any trailing '/'. Some 48 # people add it, but the script doesn't expect it.) 48 49 49 50 while test $# -gt 0 && test $printHelp = 0 ; do … … 58 59 printHelp=1 59 60 ;; 60 *) dirToCommit= "$1"61 *) dirToCommit=`echo $1 | sed -e 's,/$,,'` 61 62 ;; 62 63 esac -
stable/0.6/commit_new_stable
r1957 r2073 43 43 44 44 # Process the parameters. A parameter without an opening `-' is assumed to be 45 # the spec for the directory to be committed. 45 # the spec for the directory to be committed. (Strip any trailing '/'. Some 46 # people add it, but the script doesn't expect it.) 46 47 47 48 while test $# -gt 0 && test $printHelp = 0 ; do … … 56 57 printHelp=1 57 58 ;; 58 *) dirToCommit= "$1"59 *) dirToCommit=`echo $1 | sed -e 's,/$,,'` 59 60 ;; 60 61 esac -
stable/0.6/compile_f2c
- Property svn:mergeinfo changed (with no actual effect on merging)
-
stable/0.6/prepare_new_release
r1957 r2073 564 564 extBTURL=`svn propget svn:externals $ext_rel_url_notail` 565 565 extBTURL=`echo $extBTURL | \ 566 sed -n -e 's/ .*BuildTools https:\([^ ]*\) .*/https:\1/p'`566 sed -n -e 's/^BuildTools *https:\([^ ]*\) *$/https:\1/p'` 567 567 if test -n "$extBTURL" ; then 568 568 testResult=`compareURLVersions "$ourBTURL" "$extBTURL"` -
stable/0.6/prepare_new_stable
r1957 r2073 514 514 extBTURL=`svn propget svn:externals $ext_url_notail` 515 515 extBTURL=`echo $extBTURL | \ 516 sed -n -e 's/ .*BuildTools https:\([^ ]*\) .*/https:\1/p'`516 sed -n -e 's/^BuildTools *https:\([^ ]*\) *$/https:\1/p'` 517 517 if test -n "$extBTURL" ; then 518 518 testResult=`compareURLVersions "$srcBTURL" "$extBTURL"`
Note: See TracChangeset
for help on using the changeset viewer.