py/mkrules.mk: Rework find command so it works on OSX.
The Mac version of find doesn't support -printf, so this changes things to use sed to strip off the leading path element instead.
This commit is contained in:
parent
a0b2c6ad32
commit
0400fa45ba
@ -108,7 +108,7 @@ endif
|
||||
|
||||
ifneq ($(FROZEN_MPY_DIR),)
|
||||
# make a list of all the .py files that need compiling and freezing
|
||||
FROZEN_MPY_PY_FILES := $(shell find -L $(FROZEN_MPY_DIR) -type f -name '*.py' -printf '%P\n')
|
||||
FROZEN_MPY_PY_FILES := $(shell find -L $(FROZEN_MPY_DIR) -type f -name '*.py' | sed -e 's=^$(FROZEN_MPY_DIR)/==')
|
||||
FROZEN_MPY_MPY_FILES := $(addprefix $(BUILD)/frozen_mpy/,$(FROZEN_MPY_PY_FILES:.py=.mpy))
|
||||
|
||||
# to build .mpy files from .py files
|
||||
|
Loading…
x
Reference in New Issue
Block a user