diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-10-01 15:10:24 +0900 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2018-10-04 16:54:51 +1000 |
commit | bad96de8d31ba65dc26645af5550135315ea0b19 (patch) | |
tree | 97be83e997ed747958ec6dc235b6b58978f826ff /arch | |
parent | f5e284803a7206d43e26f9ffcae5de9626d95e37 (diff) | |
download | linux-bad96de8d31ba65dc26645af5550135315ea0b19.tar.bz2 |
powerpc: remove leftover code of old GCC version checks
Clean up the leftover of commit f2910f0e6835 ("powerpc: remove old
GCC version checks").
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Acked-by: Nicholas Piggin <npiggin@gmail.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/Makefile | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/arch/powerpc/Makefile b/arch/powerpc/Makefile index 81552c7b46eb..974103254aed 100644 --- a/arch/powerpc/Makefile +++ b/arch/powerpc/Makefile @@ -422,10 +422,6 @@ else endif endif -# Use the file '.tmp_gas_check' for binutils tests, as gas won't output -# to stdout and these checks are run even on install targets. -TOUT := .tmp_gas_check - # Check toolchain versions: # - gcc-4.6 is the minimum kernel-wide version so nothing required. checkbin: @@ -436,7 +432,3 @@ checkbin: echo -n '*** Please use a different binutils version.' ; \ false ; \ fi - - -CLEAN_FILES += $(TOUT) - |