diff options
author | Helge Deller <deller@gmx.de> | 2020-05-10 22:43:33 +0200 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2020-05-10 22:43:33 +0200 |
commit | 0d341e0ddb1a3444716420ad9151949c02adbe4e (patch) | |
tree | 81a0a950425513ded45587adb42202c8d68c9c1a | |
parent | 0e698dfa282211e414076f9dc7e83c1c288314fd (diff) | |
download | linux-0d341e0ddb1a3444716420ad9151949c02adbe4e.tar.gz linux-0d341e0ddb1a3444716420ad9151949c02adbe4e.tar.bz2 linux-0d341e0ddb1a3444716420ad9151949c02adbe4e.zip |
parisc: suppress error messages for 'make clean'
Avoid error messages when running 'make ARCH=parisc clean'.
Noticed-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Helge Deller <deller@gmx.de>
-rw-r--r-- | arch/parisc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/parisc/Makefile b/arch/parisc/Makefile index 628cd8bb7ad8..fadbbd010337 100644 --- a/arch/parisc/Makefile +++ b/arch/parisc/Makefile @@ -21,8 +21,6 @@ KBUILD_IMAGE := vmlinuz NM = sh $(srctree)/arch/parisc/nm CHECKFLAGS += -D__hppa__=1 -LIBGCC = $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name) -export LIBGCC ifdef CONFIG_64BIT UTS_MACHINE := parisc64 @@ -110,6 +108,8 @@ cflags-$(CONFIG_PA8X00) += -march=2.0 -mschedule=8000 head-y := arch/parisc/kernel/head.o KBUILD_CFLAGS += $(cflags-y) +LIBGCC := $(shell $(CC) -print-libgcc-file-name) +export LIBGCC kernel-y := mm/ kernel/ math-emu/ |