mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
f49821ee32
Incremental linking is gone, so rename built-in.o to built-in.a, which is the usual extension for archive files. This patch does two things, first is a simple search/replace: git grep -l 'built-in\.o' | xargs sed -i 's/built-in\.o/built-in\.a/g' The second is to invert nesting of nested text manipulations to avoid filtering built-in.a out from libs-y2: -libs-y2 := $(filter-out %.a, $(patsubst %/, %/built-in.a, $(libs-y))) +libs-y2 := $(patsubst %/, %/built-in.a, $(filter-out %.a, $(libs-y))) Signed-off-by: Nicholas Piggin <npiggin@gmail.com> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
10 lines
182 B
Makefile
10 lines
182 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the S/390 specific device drivers
|
|
#
|
|
|
|
obj-y += cio/ block/ char/ crypto/ net/ scsi/ virtio/
|
|
|
|
drivers-y += drivers/s390/built-in.a
|
|
|