From de43f224d4b6565266f8c2caacfe2a82f03cabb0 Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Thu, 5 Nov 2009 01:37:37 +0100 Subject: [PATCH] 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 --- e2fsck/Makefile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/e2fsck/Makefile.in b/e2fsck/Makefile.in index 8296e725..29f3c6f9 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 \