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 | 2290b5a9cfa4fc2882ad593efcb0f8d008dc730e (patch) | |
tree | 3f1fc0bde61abb12e72a8f7d076504a500d48a58 /openwrt/target/linux/image/squashfs.mk | |
parent | 3d3503fc81cf017d82e294e5a7768e8fc2aa3955 (diff) |
fix typo in endian-ness select for squashfs
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2900 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/target/linux/image/squashfs.mk')
-rw-r--r-- | openwrt/target/linux/image/squashfs.mk | 9 |
1 files changed, 4 insertions, 5 deletions
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) |