aboutsummaryrefslogtreecommitdiff
path: root/rules.mak
diff options
context:
space:
mode:
authormalc <av1474@comtv.ru>2009-11-14 23:32:10 +0300
committermalc <av1474@comtv.ru>2009-11-14 23:32:43 +0300
commit3e65aaf5b2a01272fcd71d9b4efa7fe94c9c11af (patch)
treea67e6968dc56c7f0c4962829ec147f848315ac5c /rules.mak
parent593c0d103cc1ba835ccec607a9005131449b8511 (diff)
Do not execute shell scripts directly
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'rules.mak')
-rw-r--r--rules.mak2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules.mak b/rules.mak
index f8e5b04e55..77a801b498 100644
--- 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