We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be1565b commit badb45aCopy full SHA for badb45a
CHANGELOG
@@ -3,7 +3,7 @@
3
*******************************************************************************
4
5
=== 1.0.17 ===
6
-
+* Updated build scripts.
7
8
=== 1.0.16 ===
9
* Updated build scripts.
make/functions.mk
@@ -61,3 +61,9 @@ vmajor = $(shell echo "$(strip $1)" | sed -E 's/([0-9]+)\.([0-9
61
vminor = $(shell echo "$(strip $1)" | sed -E 's/([0-9]+)\.([0-9]+)\.([0-9]+)(-(.*))?/\2/')
62
vmicro = $(shell echo "$(strip $1)" | sed -E 's/([0-9]+)\.([0-9]+)\.([0-9]+)(-(.*))?/\3/')
63
vbranch = $(shell echo "$(strip $1)" | sed -E 's/([0-9]+)\.([0-9]+)\.([0-9]+)(-(.*))?/\5/')
64
+
65
+ifeq ("$(MSYSTEM)","")
66
+ pathconv = $1
67
+else
68
+ pathconv = $(shell cygpath -w "$1")
69
+endif
0 commit comments