* Make bootable doesn't complain when a boot-$arch script is missing if IGNORE_MISSING_BOOT_SCRIPT is set.
This commit is contained in:
parent
6c065e9b9e
commit
eb8fa69045
2
Makefile
2
Makefile
|
@ -554,9 +554,11 @@ $(BDIR)/bootable-stamp:
|
||||||
echo "Running tools/boot/$(CODENAME)/boot-$(ARCH) $$n $$dir" ; \
|
echo "Running tools/boot/$(CODENAME)/boot-$(ARCH) $$n $$dir" ; \
|
||||||
$(BASEDIR)/tools/boot/$(CODENAME)/boot-$(ARCH) $$n $$dir; \
|
$(BASEDIR)/tools/boot/$(CODENAME)/boot-$(ARCH) $$n $$dir; \
|
||||||
else \
|
else \
|
||||||
|
if [ "$${IGNORE_MISSING_BOOT_SCRIPT:-0}" = "0" ]; then \
|
||||||
echo "No script to make CDs bootable for $(ARCH) ..."; \
|
echo "No script to make CDs bootable for $(ARCH) ..."; \
|
||||||
exit 1; \
|
exit 1; \
|
||||||
fi; \
|
fi; \
|
||||||
|
fi; \
|
||||||
done
|
done
|
||||||
$(Q)touch $(BDIR)/bootable-stamp
|
$(Q)touch $(BDIR)/bootable-stamp
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue