Makefile.system: adjust mipsel/mips64el ARCH variables
When building for MIPS{64} little-endian variants, the included makefiles should be the same as for the big-endian. There are already some adjustments being done for some ARCH names. This change adds the ones for the `mipsel` and `mips64el` names, so that the Makefile.mips{64} files get included. This comes as a result of: https://github.com/openwrt/packages/issues/16649 Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
This commit is contained in:
parent
e76ff6a44e
commit
b7bb2e36b8
|
@ -33,6 +33,10 @@ else ifeq ($(ARCH), armv7)
|
||||||
override ARCH=arm
|
override ARCH=arm
|
||||||
else ifeq ($(ARCH), aarch64)
|
else ifeq ($(ARCH), aarch64)
|
||||||
override ARCH=arm64
|
override ARCH=arm64
|
||||||
|
else ifeq ($(ARCH), mipsel)
|
||||||
|
override ARCH=mips
|
||||||
|
else ifeq ($(ARCH), mips64el)
|
||||||
|
override ARCH=mips64
|
||||||
else ifeq ($(ARCH), zarch)
|
else ifeq ($(ARCH), zarch)
|
||||||
override ARCH=zarch
|
override ARCH=zarch
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue