aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2020-03-15 00:26:22 -0400
committerTheodore Ts'o <tytso@mit.edu>2020-03-15 00:26:22 -0400
commit1acede5ded41b7c793532a922822c405de75704c (patch)
treee3e63d10f5ba19d5bfb4d2c81a4f0fe62b575706
parenteb88b751745b5e6b39ddfa2196b5efa9a25535a9 (diff)
downloade2fsprogs-1acede5ded41b7c793532a922822c405de75704c.tar.gz
e2fsck: fix "make check" when using static libraries
Fixes: 70303df16ca6 ("e2fsck: consistently use ext2fs_get_mem()") Signed-off-by: Theodore Ts'o <tytso@mit.edu>
-rw-r--r--e2fsck/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/e2fsck/Makefile.in b/e2fsck/Makefile.in
index 4a926a7db..3fdbfbd82 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