Skip to content

Commit 589ef2c

Browse files
committed
Fix indentation in Makefile
Running `make help` requires you to specify the ARCH=arm64 architecture due to an indendation error in the Makefile.
1 parent b9ba770 commit 589ef2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ DUMPING_DTB := 0
516516
.PHONY: android-dtb
517517
android-dtb $(ANDROID_DTB):
518518
ifneq ($(ARCH),arm64)
519-
$(error android-dtb is only supported from arm64)
519+
$(error android-dtb is only supported from arm64)
520520
endif
521521

522522
# DUMPING_DTB=1 prevents infinite recursion. It must be set as a `make` argument,

0 commit comments

Comments
 (0)