mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2024-11-24 21:43:40 +00:00
Updated Makefile to support armv7l
Compiling on an armv7l was broken due to SUBARCH not matching the architecture.
This commit is contained in:
parent
b093e6ca86
commit
3291571570
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -92,7 +92,7 @@ ifeq ($(CONFIG_WOWLAN), y)
|
|||
EXTRA_CFLAGS += -DCONFIG_WOWLAN
|
||||
endif
|
||||
|
||||
SUBARCH := $(shell uname -m | sed -e s/i.86/i386/ | sed -e s/ppc/powerpc/ | sed -e s/armv6l/arm/)
|
||||
SUBARCH := $(shell uname -m | sed -e s/i.86/i386/ | sed -e s/ppc/powerpc/ | sed -e s/armv.l/arm/)
|
||||
|
||||
ARCH ?= $(SUBARCH)
|
||||
CROSS_COMPILE ?=
|
||||
|
|
Loading…
Reference in a new issue