aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2005-06-12 17:51:31 +0000
committerFelix Fietkau <nbd@openwrt.org>2005-06-12 17:51:31 +0000
commita437bf58d405fcef9ff007008974c3a2bb2e8786 (patch)
tree1f1861f78030134442118bceba1f9f1579cdd85c
parentd44b7351a613f8c769263c4374df5993340ecdf3 (diff)
downloadupstream-a437bf58d405fcef9ff007008974c3a2bb2e8786.tar.gz
upstream-a437bf58d405fcef9ff007008974c3a2bb2e8786.tar.bz2
upstream-a437bf58d405fcef9ff007008974c3a2bb2e8786.zip
fix squashfs build
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1219 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--openwrt/target/linux/image/squashfs.mk7
1 files changed, 4 insertions, 3 deletions
diff --git a/openwrt/target/linux/image/squashfs.mk b/openwrt/target/linux/image/squashfs.mk
index e9a95de560d..917a69ab8a1 100644
--- a/openwrt/target/linux/image/squashfs.mk
+++ b/openwrt/target/linux/image/squashfs.mk
@@ -12,8 +12,9 @@ $(KDIR)/root.squashfs:
@mkdir -p $(KDIR)/root/jffs
$(STAGING_DIR)/bin/mksquashfs-lzma $(KDIR)/root $@ -noappend -root-owned -le
+squashfs-install: $(KDIR)/root.squashfs
+ $(MAKE) -C $(BOARD) install KERNEL="$(KERNEL)" FS="squashfs"
+
prepare: squashfs-prepare
compile: squashfs-compile
-install: $(KDIR)/root.squashfs
- $(MAKE) -C $(BOARD) install KERNEL="$(KERNEL)" FS="squashfs"
-
+install: squashfs-install