]> Git Repo - qemu.git/commitdiff
Do not execute shell scripts directly
authormalc <[email protected]>
Sat, 14 Nov 2009 20:32:10 +0000 (23:32 +0300)
committermalc <[email protected]>
Sat, 14 Nov 2009 20:32:43 +0000 (23:32 +0300)
Signed-off-by: malc <[email protected]>
rules.mak

index f8e5b04e55d4343b0e9ec44f53bb3348a60ee848..77a801b4986ef6cbd237a99b68521dec084acdd1 100644 (file)
--- a/rules.mak
+++ b/rules.mak
@@ -44,5 +44,5 @@ cc-option = $(if $(shell $(CC) $1 $2 -S -o /dev/null -xc /dev/null \
        @test -f $@ || cp $< $@
 
 %.h-timestamp: %.mak
-       $(call quiet-command, $(SRC_PATH)/create_config < $< > $@, "  GEN   $*.h")
+       $(call quiet-command, sh $(SRC_PATH)/create_config < $< > $@, "  GEN   $*.h")
        @cmp $@ $*.h >/dev/null 2>&1 || cp $@ $*.h
This page took 0.02521 seconds and 4 git commands to generate.