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 ee0d06a commit b14d984Copy full SHA for b14d984
Makefile
@@ -80,10 +80,10 @@ build: clean
80
81
multizip: clean
82
@-$(foreach abi,$(KODI_PYTHON_ABIS), \
83
- echo "cd /addon/requires/import[@addon='xbmc.python']/@version\nset $(abi)\nsave\nbye" | xmllint --shell addon.xml; \
+ echo -e "cd /addon/requires/import[@addon='xbmc.python']/@version\nset $(abi)\nsave\nbye" | xmllint --shell addon.xml; \
84
matrix=$(findstring $(abi), $(word 1,$(KODI_PYTHON_ABIS))); \
85
if [ $$matrix ]; then version=$(version)+matrix.1; else version=$(version); fi; \
86
- echo "cd /addon/@version\nset $$version\nsave\nbye" | xmllint --shell addon.xml; \
+ echo -e "cd /addon/@version\nset $$version\nsave\nbye" | xmllint --shell addon.xml; \
87
make zip; \
88
)
89
0 commit comments