summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorglx <glx@openttd.org>2008-08-12 18:03:32 +0000
committerglx <glx@openttd.org>2008-08-12 18:03:32 +0000
commit4d10054112609301064189f65e0770721e5af5c1 (patch)
tree7056d8fde8caf0c97a4e7c23f895e73d81d7cf76 /Makefile.in
parent72c154fd0fcd0c0c0c1a239b1cefcf0b07d1a9ff (diff)
downloadopenttd-4d10054112609301064189f65e0770721e5af5c1.tar.xz
(svn r14053) -Fix: branch detection failed for svn+ssh repos
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 819d5835b..d63a0fdd6 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -156,7 +156,7 @@ ifeq ($(shell if test -d $(SRC_DIR)/.svn; then echo 1; fi), 1)
# Find if the local source if modified
REV_MODIFIED := $(shell svnversion $(SRC_DIR) | sed -n 's/.*\(M\).*/\1/p' )
# Find the revision like: rXXXX-branch
-REV := $(shell LC_ALL=C svn info $(SRC_DIR) | $(AWK) '/^URL:.*branches/ { split($$2, a, "/"); BRANCH="-"a[5] } /^Last Changed Rev:/ { REV="r"$$4"$(REV_MODIFIED)" } END { print REV BRANCH }')
+REV := $(shell LC_ALL=C svn info $(SRC_DIR) | $(AWK) '/^URL:.*branches/ { split($$2, a, "/"); i=1; while(i<length(a) && a[i++]!="branches"); BRANCH="-"a[i] } /^Last Changed Rev:/ { REV="r"$$4"$(REV_MODIFIED)" } END { print REV BRANCH }')
endif
endif
# Make sure we have something in REV