diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-07-08 11:25:25 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-07-08 11:25:25 +0000 |
commit | ab088e8cd1270470388f264f06ddb238c59b4e79 (patch) | |
tree | 257182e13c55c3fef9b605aa3cbe69b544749b54 /target | |
parent | c1dc610e0dc11e190c1384e0c90951ad6a7c43be (diff) | |
download | buildroot-novena-ab088e8cd1270470388f264f06ddb238c59b4e79.tar.gz buildroot-novena-ab088e8cd1270470388f264f06ddb238c59b4e79.zip |
- iso9660 target does not build target kernel due to missing dependency. Closes #1194
Diffstat (limited to 'target')
-rw-r--r-- | target/iso9660/iso9660.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/iso9660/iso9660.mk b/target/iso9660/iso9660.mk index 69ab03de4..2f0286d6b 100644 --- a/target/iso9660/iso9660.mk +++ b/target/iso9660/iso9660.mk @@ -54,7 +54,7 @@ ifeq ($(strip $(BR2_TARGET_ROOTFS_ISO9660_SQUASH)),y) ISO9660_OPTS+=-U endif -$(ISO9660_TARGET): host-fakeroot $(EXT2_TARGET) grub mkisofs +$(ISO9660_TARGET): host-fakeroot $(LINUX_KERNEL) $(EXT2_TARGET) grub mkisofs mkdir -p $(ISO9660_TARGET_DIR) mkdir -p $(ISO9660_TARGET_DIR)/boot/grub cp $(GRUB_DIR)/stage2/stage2_eltorito $(ISO9660_TARGET_DIR)/boot/grub/ |