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 9def337 commit 2ba7b13Copy full SHA for 2ba7b13
1 file changed
make/functions.mk
@@ -61,3 +61,10 @@ 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
70
0 commit comments