diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-02-06 22:04:06 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-02-06 22:04:06 +0000 |
commit | b04d73bf0f9c53efb67c089360da7598d042fb88 (patch) | |
tree | bd17e56456ca2c02202d02ce9088713974082656 | |
parent | Windows x64 fixes (diff) | |
download | ice-b04d73bf0f9c53efb67c089360da7598d042fb88.tar.bz2 ice-b04d73bf0f9c53efb67c089360da7598d042fb88.tar.xz ice-b04d73bf0f9c53efb67c089360da7598d042fb88.zip |
minor fix
-rwxr-xr-x | cs/makedist.py | 5 | ||||
-rwxr-xr-x | java/makedist.py | 5 | ||||
-rwxr-xr-x | py/makedist.py | 3 | ||||
-rwxr-xr-x | rb/makedist.py | 5 | ||||
-rwxr-xr-x | vb/makedist.py | 5 |
5 files changed, 14 insertions, 9 deletions
diff --git a/cs/makedist.py b/cs/makedist.py index 2be20049cac..46ba04fd663 100755 --- a/cs/makedist.py +++ b/cs/makedist.py @@ -18,7 +18,7 @@ def usage(): print print "Options:" print "-h Show this message." - print "-d Skip SGML documentation conversion." + print "-d Skip documentation conversion." print "-v Be verbose." print print "If no tag is specified, HEAD is used." @@ -177,7 +177,8 @@ version = re.search("VERSION[= \t]*([0-9\.b]+)", config.read()).group(1) print "Fixing version in README and INSTALL files..." fixVersion(find("icecs", "README*"), version) fixVersion(find("icecs", "INSTALL*"), version) -fixVersion(find("icecs/doc", "index.html"), version) +if not skipDocs: + fixVersion(find("icecs/doc", "index.html"), version) # # Create source archives. diff --git a/java/makedist.py b/java/makedist.py index 7d99fbe0b34..91a40a2fe34 100755 --- a/java/makedist.py +++ b/java/makedist.py @@ -18,7 +18,7 @@ def usage(): print print "Options:" print "-h Show this message." - print "-d Skip SGML documentation conversion." + print "-d Skip documentation conversion." print "-t Skip building translators and use the ones in PATH." print "-f Keep going if precondition checks fail." print "-v Be verbose." @@ -329,7 +329,8 @@ version = re.search("ICE_STRING_VERSION = \"([0-9\.b]*)\"", config.read()).group print "Fixing version in README and INSTALL files..." fixVersion(find("icej", "README*"), version) fixVersion(find("icej", "INSTALL*"), version) -fixVersion(find("icej/doc", "index.html"), version) +if not skipDocs: + fixVersion(find("icej/doc", "index.html"), version) # # Create source archives. diff --git a/py/makedist.py b/py/makedist.py index 2e325c8dff3..68d7328222d 100755 --- a/py/makedist.py +++ b/py/makedist.py @@ -257,7 +257,8 @@ config.close() print "Fixing version in README and INSTALL files..." fixVersion(find("icepy", "README*"), version) fixVersion(find("icepy", "INSTALL*"), version) -fixVersion(find("icepy/doc", "index.html"), version) +if not skipDocs: + fixVersion(find("icepy/doc", "index.html"), version) # # Create source archives. diff --git a/rb/makedist.py b/rb/makedist.py index dd999f9b453..83010fcd70c 100755 --- a/rb/makedist.py +++ b/rb/makedist.py @@ -18,7 +18,7 @@ def usage(): print print "Options:" print "-h Show this message." - print "-d Skip SGML documentation conversion." + print "-d Skip documentation conversion." print "-t Skip building translator and use the one in PATH." print "-v Be verbose." print @@ -230,7 +230,8 @@ version = re.search("VERSION[= \t]*([0-9\.b]+)", config.read()).group(1) print "Fixing version in README and INSTALL files..." fixVersion(find("icerb", "README*"), version) fixVersion(find("icerb", "INSTALL*"), version) -fixVersion(find("icerb/doc", "index.html"), version) +if not skipDocs: + fixVersion(find("icerb/doc", "index.html"), version) # # Create source archives. diff --git a/vb/makedist.py b/vb/makedist.py index 4a5982bbad0..d194033a5ea 100755 --- a/vb/makedist.py +++ b/vb/makedist.py @@ -18,7 +18,7 @@ def usage(): print print "Options:" print "-h Show this message." - print "-d Skip SGML documentation conversion." + print "-d Skip documentation conversion." print "-v Be verbose." print print "If no tag is specified, HEAD is used." @@ -192,7 +192,8 @@ if int(checkBeta[2]) > 50: print "Fixing version in README and INSTALL files..." fixVersion(find("icevb", "README*"), version) fixVersion(find("icevb", "INSTALL*"), version) -fixVersion(find("icevb/doc", "index.html"), version) +if not skipDocs: + fixVersion(find("icevb/doc", "index.html"), version) # # Fix source dist demo project files. |