Skip to content

Commit c7cd882

Browse files
committed
parisc: Fix missing binfmt_elf32.o build error
Commit 71d577d ("parisc: Switch to generic COMPAT_BINFMT_ELF") removed the binfmt_elf32.c source file, but missed to drop the object file from the list of object files the Makefile, which then results in a build error. Fixes: 71d577d ("parisc: Switch to generic COMPAT_BINFMT_ELF") Reported-by: Guenter Roeck <[email protected]> Tested-by: Guenter Roeck <[email protected]> Signed-off-by: Helge Deller <[email protected]>
1 parent 4802310 commit c7cd882

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/parisc/kernel/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ obj-$(CONFIG_SMP) += smp.o
2323
obj-$(CONFIG_PA11) += pci-dma.o
2424
obj-$(CONFIG_PCI) += pci.o
2525
obj-$(CONFIG_MODULES) += module.o
26-
obj-$(CONFIG_64BIT) += binfmt_elf32.o sys_parisc32.o signal32.o
26+
obj-$(CONFIG_64BIT) += sys_parisc32.o signal32.o
2727
obj-$(CONFIG_STACKTRACE)+= stacktrace.o
2828
obj-$(CONFIG_AUDIT) += audit.o
2929
obj64-$(CONFIG_AUDIT) += compat_audit.o

0 commit comments

Comments
 (0)