Skip to content

Commit 4262d0f

Browse files
committed
lkl: fix default build target to include progs
lklfuse, fs2tar and cptofs were accidentally dropped from the default build target via a typo in commit 6d360d164e5d5 ("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: 6d360d164e5d5 ("lkl: link tests against common private library") Signed-off-by: David Disseldorp <ddiss@suse.de> (cherry picked from commit 191e6381bcf418092644217723001bca7c154c45) Link: lkl/linux#617
1 parent 05ce7a9 commit 4262d0f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/lkl/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export CFLAGS += -I$(OUTPUT)/include -Iinclude -Wall -g -O2 -Wextra \
5353
include Targets
5454

5555
TARGETS := $(progs-y:%=$(OUTPUT)%$(EXESUF))
56-
TARGETS := $(tests-y:%=$(OUTPUT)%$(EXESUF))
56+
TARGETS += $(tests-y:%=$(OUTPUT)%$(EXESUF))
5757
TARGETS += $(libs-y:%=$(OUTPUT)%$(SOSUF))
5858
all: $(TARGETS)
5959

0 commit comments

Comments
 (0)