diff options
author | Michael Cahill <michael.cahill@wiredtiger.com> | 2013-06-18 14:52:55 +1000 |
---|---|---|
committer | Michael Cahill <michael.cahill@wiredtiger.com> | 2013-06-18 14:52:55 +1000 |
commit | bac863900f3d97cfa4311e6c5b9930c1b785e941 (patch) | |
tree | 004d3782fee1e99d1fac204c722b4dc318c88039 /dist/s_all | |
parent | 93a1673a4b7aae2d6a9b8feba8d5fc56c3b4bedb (diff) | |
download | mongo-bac863900f3d97cfa4311e6c5b9930c1b785e941.tar.gz |
Force the release date to be updated when cutting a release.
refs #580
Diffstat (limited to 'dist/s_all')
-rw-r--r-- | dist/s_all | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/dist/s_all b/dist/s_all index d84711e1e62..11506fd76fd 100644 --- a/dist/s_all +++ b/dist/s_all @@ -29,18 +29,22 @@ run() echo 'dist/s_all run started...' +force= reconf=0 while : do case "$1" in -A) # Reconfigure the library build. reconf=1 shift;; + -f) # Force versions to be updated + force="-f" + shift;; *) break;; esac done -run "sh ./s_version" "Updating files that include the package version" +run "sh ./s_version $force" "Updating files that include the package version" test "$reconf" -eq 0 || { (cd ../build_posix && @@ -58,7 +62,7 @@ run "python java_doc.py" "building Java documentation index" run "sh ./s_typedef -b" "building standard typedefs" run "sh ./s_prototypes" "building function prototypes" -run "sh ./s_readme" "building README file" +run "sh ./s_readme $force" "building README file" run "sh ./s_tags" "building tags files" run "sh ./s_copyright" "checking copyright notices" |