diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-11 02:55:09 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-11 02:55:09 +0000 |
commit | d71f4bb87e90ba1d877367901ff89fe5405000ef (patch) | |
tree | b57258706ece339530c4a7699e5e18fa9bfcaae8 | |
parent | ce399c5f844d8c117a2b4f9f68184602597bdc6f (diff) |
fix typo in endian-ness select for squashfs
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2900 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | target/linux/image/squashfs.mk | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/target/linux/image/squashfs.mk b/target/linux/image/squashfs.mk index 450718153..7fe972a45 100644 --- a/target/linux/image/squashfs.mk +++ b/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) |