From: Hauke Mehrtens Date: Thu, 21 Jan 2021 23:11:30 +0000 (-0500) Subject: build: Add SYSLIBS to e4crypt linking X-Git-Tag: v1.45.7~21 X-Git-Url: https://git.whamcloud.com/gitweb?a=commitdiff_plain;h=4d108756a4f185a48b366045fcfd0bc01a665bf2;p=tools%2Fe2fsprogs.git build: Add SYSLIBS to e4crypt linking The $(SYSLIBS) was missing when linking the e4crypt application. This is available in the e4crypt.profiled variant, so I assume this was just missing in the normal variant and is not left out intentionally. Signed-off-by: Hauke Mehrtens Signed-off-by: Theodore Ts'o --- diff --git a/misc/Makefile.in b/misc/Makefile.in index e61e6b7..a560233 100644 --- a/misc/Makefile.in +++ b/misc/Makefile.in @@ -243,7 +243,7 @@ e4defrag: $(E4DEFRAG_OBJS) $(DEPLIBS) e4crypt: $(E4CRYPT_OBJS) $(DEPLIBS) $(DEPSTATIC_LIBUUID) $(E) " LD $@" $(Q) $(CC) $(ALL_LDFLAGS) -o e4crypt $(E4CRYPT_OBJS) \ - $(LIBUUID) $(LIBS) + $(LIBUUID) $(LIBS) $(SYSLIBS) e4defrag.profiled: $(E4DEFRAG_OBJS) $(PROFILED_DEPLIBS) $(E) " LD $@"