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 | a15be375b0e63f05f0844d6fb6933d71b71d8fec (patch) | |
tree | 0097a4b9ed082e23698b828322c686fb8587ccca /target/linux/x86/Makefile | |
parent | d75d8c65e195223bb9804c423e6d854ea0c772a3 (diff) | |
download | upstream-a15be375b0e63f05f0844d6fb6933d71b71d8fec.tar.gz upstream-a15be375b0e63f05f0844d6fb6933d71b71d8fec.tar.bz2 upstream-a15be375b0e63f05f0844d6fb6933d71b71d8fec.zip |
only require mkisofs if isofs root is actually selected
SVN-Revision: 9211
Diffstat (limited to 'target/linux/x86/Makefile')
-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. \ )) |