X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=scripts%2FKbuild.include;h=6a3ee981931d3c2b4438cff1d220ec2e8039bd7e;hb=cb60e3e65c1b96a4d6444a7a13dc7dd48bc15a2b;hp=d897278b1f975f0c4a3af72ec32406056fc76bc9;hpb=4167ab90ee6a2c029855db53d1631c84a213f3d1;p=firefly-linux-kernel-4.4.55.git diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include index d897278b1f97..6a3ee981931d 100644 --- a/scripts/Kbuild.include +++ b/scripts/Kbuild.include @@ -104,7 +104,7 @@ as-option = $(call try-run,\ # Usage: cflags-y += $(call as-instr,instr,option1,option2) as-instr = $(call try-run,\ - /bin/echo -e "$(1)" | $(CC) $(KBUILD_AFLAGS) -c -xassembler -o "$$TMP" -,$(2),$(3)) + printf "%b\n" "$(1)" | $(CC) $(KBUILD_AFLAGS) -c -xassembler -o "$$TMP" -,$(2),$(3)) # cc-option # Usage: cflags-y += $(call cc-option,-march=winchip-c6,-march=i586)