Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 88b27b56 authored by Dan Willemsen's avatar Dan Willemsen
Browse files

mediaex: Fix build rule under Make

Ninja automatically creates the output directory for a rule, but make
does not. Add mkdir -p so that make builds work.

Change-Id: I123226b2b1b641d268ad0a4922172d43506741cf
parent b586c8e6
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@ endif
include $(BUILD_SYSTEM)/base_rules.mk

$(LOCAL_BUILT_MODULE): $(LOCAL_SRC_FILES)
	cat > $@ $^
	@mkdir -p $(dir $@)
	$(hide) cat > $@ $^

endif