From: Matthias Andree Date: Thu, 5 Nov 2009 00:37:37 +0000 (+0100) Subject: Add $(LIBINTL) to tst_problem linked libs. X-Git-Tag: v1.41.90.wc1~73 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=de43f224d4b6565266f8c2caacfe2a82f03cabb0;p=tools%2Fe2fsprogs.git Add $(LIBINTL) to tst_problem linked libs. Fixes build problem on systems where gettext() isn't in libc, such as FreeBSD. Signed-off-by: Matthias Andree Signed-off-by: Theodore Ts'o --- diff --git a/e2fsck/Makefile.in b/e2fsck/Makefile.in index 8296e72..29f3c6f 100644 --- a/e2fsck/Makefile.in +++ b/e2fsck/Makefile.in @@ -138,7 +138,8 @@ crc32table.h: gen_crc32table tst_problem: $(srcdir)/problem.c $(srcdir)/problem.h $(LIBEXT2FS) \ $(DEPLIBCOM_ERR) $(Q) $(CC) $(BUILD_LDFLAGS) $(ALL_CFLAGS) -o tst_problem \ - $(srcdir)/problem.c -DUNITTEST $(LIBEXT2FS) $(LIBCOM_ERR) + $(srcdir)/problem.c -DUNITTEST $(LIBEXT2FS) $(LIBCOM_ERR) \ + $(LIBINTL) tst_crc32: $(srcdir)/crc32.c $(LIBEXT2FS) $(DEPLIBCOM_ERR) $(Q) $(CC) $(BUILD_LDFLAGS) $(ALL_CFLAGS) -o tst_crc32 $(srcdir)/crc32.c \