From: Theodore Ts'o Date: Thu, 19 Jun 2008 14:09:08 +0000 (-0400) Subject: Fix "make check" in e2fsck subdirectory to use the in-tree com_err library X-Git-Tag: v1.41-WIP-0707~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6f2ca692ecb993c23aabfcf3bb44376a03394cc0;p=thirdparty%2Fe2fsprogs.git Fix "make check" in e2fsck subdirectory to use the in-tree com_err library Thanks to Jose Santos for pointing this out Signed-off-by: "Theodore Ts'o" --- diff --git a/e2fsck/Makefile.in b/e2fsck/Makefile.in index 32743bc26..9b32a610d 100644 --- a/e2fsck/Makefile.in +++ b/e2fsck/Makefile.in @@ -143,12 +143,12 @@ tst_crc32: $(srcdir)/crc32.c $(LIBEXT2FS) tst_refcount: ea_refcount.c @echo " LD $@" @$(CC) -o tst_refcount $(srcdir)/ea_refcount.c \ - $(ALL_CFLAGS) -DTEST_PROGRAM -lcom_err + $(ALL_CFLAGS) -DTEST_PROGRAM $(LIBCOM_ERR) tst_region: region.c @echo " LD $@" @$(CC) -o tst_region $(srcdir)/region.c \ - $(ALL_CFLAGS) -DTEST_PROGRAM -lcom_err + $(ALL_CFLAGS) -DTEST_PROGRAM $(LIBCOM_ERR) check:: tst_refcount tst_region tst_crc32 ./tst_refcount