diff options
-rw-r--r-- | Documentation/kbuild/makefiles.txt | 2 | ||||
-rw-r--r-- | scripts/Kbuild.include | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/kbuild/makefiles.txt b/Documentation/kbuild/makefiles.txt index 5198b742fde1..5836294fdbf7 100644 --- a/Documentation/kbuild/makefiles.txt +++ b/Documentation/kbuild/makefiles.txt | |||
@@ -593,7 +593,7 @@ more details, with real examples. | |||
593 | 593 | ||
594 | Example: | 594 | Example: |
595 | #Makefile | 595 | #Makefile |
596 | LDFLAGS_vmlinux += $(call really-ld-option, -X) | 596 | LDFLAGS_vmlinux += $(call ld-option, -X) |
597 | 597 | ||
598 | 598 | ||
599 | === 4 Host Program support | 599 | === 4 Host Program support |
diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include index 978416dd31ca..547e15daf03d 100644 --- a/scripts/Kbuild.include +++ b/scripts/Kbuild.include | |||
@@ -148,7 +148,7 @@ cc-ldoption = $(call try-run,\ | |||
148 | # ld-option | 148 | # ld-option |
149 | # Usage: LDFLAGS += $(call ld-option, -X) | 149 | # Usage: LDFLAGS += $(call ld-option, -X) |
150 | ld-option = $(call try-run,\ | 150 | ld-option = $(call try-run,\ |
151 | $(CC) /dev/null -c -o "$$TMPO" ; $(LD) $(1) "$$TMPO" -o "$$TMP",$(1),$(2)) | 151 | $(CC) -x c /dev/null -c -o "$$TMPO" ; $(LD) $(1) "$$TMPO" -o "$$TMP",$(1),$(2)) |
152 | 152 | ||
153 | # ar-option | 153 | # ar-option |
154 | # Usage: KBUILD_ARFLAGS := $(call ar-option,D) | 154 | # Usage: KBUILD_ARFLAGS := $(call ar-option,D) |