aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2021-01-21 18:11:30 -0500
committerTheodore Ts'o <tytso@mit.edu>2021-01-21 18:11:39 -0500
commit4d108756a4f185a48b366045fcfd0bc01a665bf2 (patch)
tree980cc1d3551c92f591f2e2b9ed19fcfd3cbc782b
parent32c2b19945676367db636bb23d57cac7d46cb8c5 (diff)
downloade2fsprogs-4d108756a4f185a48b366045fcfd0bc01a665bf2.tar.gz
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 <hauke@hauke-m.de> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
-rw-r--r--misc/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/Makefile.in b/misc/Makefile.in
index e61e6b7f6..a560233fe 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 $@"