From: Felix Fietkau Date: Wed, 11 Jan 2006 02:55:09 +0000 (+0000) Subject: fix typo in endian-ness select for squashfs X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=6adb6175b2fa6974e79ae06447f1ce0b5f2e9a6f;p=15.05%2Fopenwrt.git fix typo in endian-ness select for squashfs git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2900 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/openwrt/target/linux/image/squashfs.mk b/openwrt/target/linux/image/squashfs.mk index 450718153c..7fe972a45e 100644 --- a/openwrt/target/linux/image/squashfs.mk +++ b/openwrt/target/linux/image/squashfs.mk @@ -1,9 +1,8 @@ -ifeq ($(BR2_LINUX_2_4_AR531X),) - endian := be -else - endian := le -endif +endian := le +ifeq ($(ARCH),mips) + endian := be +endif squashfs-prepare: $(MAKE) -C squashfs prepare $(MAKE_TRACE)