summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMichal Marek <mmarek@suse.cz>2015-12-17 10:21:57 +0100
committerMichal Marek <mmarek@suse.cz>2015-12-17 10:21:57 +0100
commit1b57e3fb47fd2ea9af2597d793923c471e7a3499 (patch)
tree58dfdc7c6778c1024b6346264b4ca8ecd4d2e433 /scripts
parentb32d78feeac2e77862bb4e2912a0c0e803227386 (diff)
downloadlinux-next-1b57e3fb47fd2ea9af2597d793923c471e7a3499.tar.gz
Revert "kbuild: support make dir/file.i for *.S"
This reverts commit d78e3144f0d5a6b90d85bf97fc47c9469ac4e4b9. There is already a rule for file.S -> file.s doing exactly that. The kbuild branch has been rebased, this is just a revert for the for-next branch.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/Makefile.build6
1 files changed, 0 insertions, 6 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build
index 2a51d4956adf..2c47f9c305aa 100644
--- a/scripts/Makefile.build
+++ b/scripts/Makefile.build
@@ -287,12 +287,6 @@ cmd_as_s_S = $(CPP) $(a_flags) -o $@ $<
$(obj)/%.s: $(src)/%.S FORCE
$(call if_changed_dep,as_s_S)
-quiet_cmd_cc_i_S = CPP $(quiet_modtag) $@
-cmd_cc_i_S = $(CPP) $(a_flags) -o $@ $<
-
-$(obj)/%.i: $(src)/%.S FORCE
- $(call if_changed_dep,cc_i_S)
-
quiet_cmd_as_o_S = AS $(quiet_modtag) $@
cmd_as_o_S = $(CC) $(a_flags) -c -o $@ $<