diff options
author | malc <av1474@comtv.ru> | 2009-08-10 03:40:16 +0400 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2009-08-10 03:41:46 +0400 |
commit | 0ff6697d1c1bc09fa73236be6f72ddccd6aa9279 (patch) | |
tree | a2bcc359dafb4b97e21046bf51103125d5692605 /pc-bios/optionrom | |
parent | d9c3231019a0fbacbe15dcb26a0e3708b726af77 (diff) |
Do not try to invoke shebang scripts directly (NFS issues)
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'pc-bios/optionrom')
-rw-r--r-- | pc-bios/optionrom/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pc-bios/optionrom/Makefile b/pc-bios/optionrom/Makefile index 7ddc242c8..7c6f211aa 100644 --- a/pc-bios/optionrom/Makefile +++ b/pc-bios/optionrom/Makefile @@ -20,7 +20,7 @@ build-all: multiboot.bin $(call quiet-command,$(OBJCOPY) -O binary -j .text $< $@," Building $(TARGET_DIR)$@") %.bin: %.raw - $(call quiet-command,$(SRC_PATH)/pc-bios/optionrom/signrom.sh $< $@," Signing $(TARGET_DIR)$@") + $(call quiet-command,$(SHELL) $(SRC_PATH)/pc-bios/optionrom/signrom.sh $< $@," Signing $(TARGET_DIR)$@") clean: $(RM) *.o *.img *.bin *~ |