run the boot script with sh -c, fixes an odd problem in the sparc script

This commit is contained in:
Ben Collins 2000-03-31 02:44:59 +00:00
parent 6a6516ae9e
commit fa61376c58
1 changed files with 2 additions and 2 deletions

View File

@ -314,9 +314,9 @@ $(BDIR)/bootable-stamp:
@for file in $(BDIR)/*.packages; do \
dir=$${file%%.packages}; \
n=$${dir##$(BDIR)/}; \
if [ -x $(BASEDIR)/tools/boot/$(CODENAME)/boot-$(ARCH) ]; then \
if [ -f $(BASEDIR)/tools/boot/$(CODENAME)/boot-$(ARCH) ]; then \
cd $(BDIR); \
$(BASEDIR)/tools/boot/$(CODENAME)/boot-$(ARCH) $$n $$dir; \
sh -c $(BASEDIR)/tools/boot/$(CODENAME)/boot-$(ARCH) $$n $$dir; \
else \
echo "No script to make CDs bootable for $(ARCH) ..."; \
exit 1; \