We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cf7e3c commit 37fa08aCopy full SHA for 37fa08a
interpreters/python/Makefile
@@ -188,7 +188,7 @@ romfs_cpython_modules.img : $(TARGETLIBPYTHON) checkgenromfs
188
@genromfs -f $@ -d $(TARGETMODULES) -V "ROMFS_Test" || { echo "genromfs failed" ; exit 1 ; }
189
190
romfs_cpython_modules.h : romfs_cpython_modules.img
191
- @xxd -i $< >$@ || { echo "xxd of $< failed" ; exit 1 ; }
+ @xxd -i $< | sed -e "s/^unsigned/static const unsigned/g" >$@ || { echo "xxd of $< failed" ; exit 1 ; }
192
193
context:: $(CPYTHON_UNPACKNAME)
194
0 commit comments