From 89742f77a2737b0053119f13f3733c2e7e363ac1 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 18 Aug 2014 15:40:56 -0400 Subject: [PATCH] fix wscript version derivation from git version info --- wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wscript b/wscript index eef175ee3c..c215e0c85c 100755 --- a/wscript +++ b/wscript @@ -35,8 +35,8 @@ else: parts = rev.split ('.') MAJOR = parts[0] -MINOR = parts[1] -other = parts[2].split ('-') +other = parts[1].split ('-') +MINOR = other[0] if len(other) > 1: MICRO = other[0] else: