diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-10-09 02:45:24 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-10-09 02:45:24 +0000 |
commit | 68ceff0c36e5494cb42ccf1b7c3cd9466cc6031e (patch) | |
tree | fd9cd865333beee812f4d3904d4289a2529252cb /target/linux | |
parent | ec1d54906f916e81d72b4759374364fe755702a1 (diff) | |
download | upstream-68ceff0c36e5494cb42ccf1b7c3cd9466cc6031e.tar.gz upstream-68ceff0c36e5494cb42ccf1b7c3cd9466cc6031e.tar.bz2 upstream-68ceff0c36e5494cb42ccf1b7c3cd9466cc6031e.zip |
only require mkisofs if isofs root is actually selected
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9211 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/x86/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/x86/Makefile b/target/linux/x86/Makefile index ddb50e6404..fc0db57126 100644 --- a/target/linux/x86/Makefile +++ b/target/linux/x86/Makefile @@ -19,6 +19,6 @@ DEFAULT_PACKAGES += kmod-natsemi kmod-ne2k-pci $(eval $(call Target,generic)) $(eval $(call Target,mediacenter)) $(eval $(call BuildTarget)) -$(eval $(call RequireCommand,mkisofs, \ +$(eval $(call $(if $(CONFIG_TARGET_ROOTFS_ISO),RequireCommand,Ignore),mkisofs, \ Please install mkisofs. \ )) |