From 1acede5ded41b7c793532a922822c405de75704c Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Sun, 15 Mar 2020 00:26:22 -0400 Subject: [PATCH] e2fsck: fix "make check" when using static libraries Fixes: 70303df16ca6 ("e2fsck: consistently use ext2fs_get_mem()") Signed-off-by: Theodore Ts'o --- e2fsck/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e2fsck/Makefile.in b/e2fsck/Makefile.in index 4a926a7..3fdbfbd 100644 --- a/e2fsck/Makefile.in +++ b/e2fsck/Makefile.in @@ -144,11 +144,11 @@ tst_logfile: $(srcdir)/logfile.c $(Q) $(CC) -o tst_logfile $(srcdir)/logfile.c \ $(ALL_CFLAGS) $(ALL_LDFLAGS) -DTEST_PROGRAM $(SYSLIBS) -tst_region: region.c $(DEPLIBCOM_ERR) $(LIBEXT2FS) +tst_region: region.c $(LIBEXT2FS) $(DEPLIBCOM_ERR) $(E) " LD $@" $(Q) $(CC) -o tst_region $(srcdir)/region.c \ $(ALL_CFLAGS) $(ALL_LDFLAGS) -DTEST_PROGRAM \ - $(LIBCOM_ERR) $(LIBEXT2FS) $(SYSLIBS) + $(LIBEXT2FS) $(LIBCOM_ERR) $(SYSLIBS) fullcheck check:: tst_refcount tst_region tst_problem $(TESTENV) ./tst_refcount -- 1.8.3.1