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

Commit b1e947f8 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix false positive when checking ELF prebuilts in PRODUCT_COPY_FILES" into main

parents 14fa9c85 8623157e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3286,7 +3286,7 @@ $(check_non_elf_file_timestamp): $(1) $(LLVM_READOBJ)
	$(hide) mkdir -p "$$(dir $$@)"
	$(hide) rm -f "$$@"
	$(hide) \
	    if $(LLVM_READOBJ) -h "$$<" >/dev/null 2>&1; then \
	    if $(LLVM_READOBJ) -h "$$<" 2>/dev/null | grep -q "^Format: elf"; then \
	        $(call echo-error,$(2),$(3)); \
	        $(call echo-error,$(2),found ELF file: $$<); \
	        false; \