From: Davidlohr Bueso Date: Tue, 8 Nov 2011 23:39:46 +0000 (+0100) Subject: mount: fix build X-Git-Tag: v2.21-rc1~210 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6b44ec173b4b91292e2a84e83225c6a02df2becb;p=thirdparty%2Futil-linux.git mount: fix build With the new build changes when libmount is not defined the compilation breaks: fstab.c:440: undefined reference to `streq_except_trailing_slash' collect2: ld returned 1 exit status make[2]: *** [mtab_lock_test] Error 1 make[2]: Leaving directory `/home/dave/projects/ut/mount' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/dave/projects/ut' make: *** [all] Error 2 This patch adds strutils to the fstab.c rule. Signed-off-by: Davidlohr Bueso --- diff --git a/mount/Makefile.am b/mount/Makefile.am index 11815503bf..01b9567d59 100644 --- a/mount/Makefile.am +++ b/mount/Makefile.am @@ -102,7 +102,7 @@ endif if !BUILD_LIBMOUNT_MOUNT noinst_PROGRAMS = mtab_lock_test -mtab_lock_test_SOURCES = fstab.c $(srcs_common) $(hdrs_mount) +mtab_lock_test_SOURCES = fstab.c $(srcs_common) $(top_srcdir)/lib/strutils.c $(hdrs_mount) mtab_lock_test_CPPFLAGS = -DMAIN_TEST_MTABLOCK $(AM_CPPFLAGS) endif