mirror of
https://github.com/lkl/linux.git
synced 2025-12-19 08:03:01 +09:00
lkl: fix default build target to include progs
lklfuse, fs2tar and cptofs were accidentally dropped from the default build target via a typo in commit6d360d164e("lkl: link tests against common private library"). The install target was still triggering progs-y builds, which is probably why this took longer to notice than expected. Fixes:6d360d164e("lkl: link tests against common private library") Signed-off-by: David Disseldorp <ddiss@suse.de>
This commit is contained in:
@@ -53,7 +53,7 @@ export CFLAGS += -I$(OUTPUT)/include -Iinclude -Wall -g -O2 -Wextra \
|
||||
include Targets
|
||||
|
||||
TARGETS := $(progs-y:%=$(OUTPUT)%$(EXESUF))
|
||||
TARGETS := $(tests-y:%=$(OUTPUT)%$(EXESUF))
|
||||
TARGETS += $(tests-y:%=$(OUTPUT)%$(EXESUF))
|
||||
TARGETS += $(libs-y:%=$(OUTPUT)%$(SOSUF))
|
||||
all: $(TARGETS)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user