summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn O. Pearce <sop@google.com>2010-02-22 14:14:53 -0800
committerShawn O. Pearce <sop@google.com>2010-02-22 14:14:53 -0800
commit332d21d5dc994de0e11305425885bdf4f095815e (patch)
tree8008bea980fb34d7c09d07d20d7c1dab03923a52
parent2d52449807dc3ed35f9cc234d048314d955450f7 (diff)
documentation: Fix version number to only consider x.y.z formatv2.1.2-rc0
Change-Id: I8fb45e92b9b9e38dfa9e1c10598174a6488ca3ea Signed-off-by: Shawn O. Pearce <sop@google.com>
-rwxr-xr-xDocumentation/GEN-DOC-VERSION2
-rw-r--r--Documentation/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/GEN-DOC-VERSION b/Documentation/GEN-DOC-VERSION
index 0d6e815005..973bfa8d27 100755
--- a/Documentation/GEN-DOC-VERSION
+++ b/Documentation/GEN-DOC-VERSION
@@ -14,6 +14,6 @@ case "$V" in
;;
v*)
- echo ${V#v}
+ echo "$V" | perl -lne 'print $1 if /^v(\d+\.\d+(?:\.\d+)?)/'
;;
esac
diff --git a/Documentation/Makefile b/Documentation/Makefile
index 673c0a724c..18a92b4dbf 100644
--- a/Documentation/Makefile
+++ b/Documentation/Makefile
@@ -52,7 +52,7 @@ endif
@-rm -rf $(LOCAL_ROOT)
@echo "Checking out current $(VERSION)"
@if ! $(SVN) checkout $(PUB_DIR) $(LOCAL_ROOT) 2>/dev/null ; then \
- p=$$(git describe HEAD^ | perl -lne 'print $$1 if /^v(\d+\.\d+\.\d+)/') && \
+ p=$$(git describe HEAD^ | perl -lne 'print $$1 if /^v(\d+\.\d+(?:\.\d+)?)/') && \
echo "Copying $$p to $(VERSION) ..." && \
$(SVN) cp -m "Create $(VERSION) documentation" $(PUB_ROOT)/$$p $(PUB_DIR) && \
$(SVN) checkout $(PUB_DIR) $(LOCAL_ROOT) ; \