summaryrefslogtreecommitdiff
path: root/debugfs
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2009-07-01 22:06:51 -0400
committerTheodore Ts'o <tytso@mit.edu>2009-07-01 22:06:51 -0400
commita6a1c0815c045fd12f65546e16d495338097f32a (patch)
treef2861ce4dff508f7898d80f0031289bb8e629325 /debugfs
parentdd6d671b86aff52a9f3eb5d1ff8a0ebd99eb4559 (diff)
downloade2fsprogs-a6a1c0815c045fd12f65546e16d495338097f32a.tar.gz
Fix Makefile dependencies for libcom_err
The e2fsprogs makefiles were using the same Makefile variable LIBCOM_ERR for the link-line arguments as well as the dependencies. Since LIBCOM_ERR can now include non-file arguments such as "-lpthread", we need to use a separate DEPLIBCOM_ERR variable that only has build file dependencies. Do the same thing for STATIC_LIBCOM_ERR and PROFILED_LIBCOM_ERR. Addresses-Sourceforge-Patches: #2813809 Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'debugfs')
-rw-r--r--debugfs/Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/debugfs/Makefile.in b/debugfs/Makefile.in
index f197a7d9..6ec2a004 100644
--- a/debugfs/Makefile.in
+++ b/debugfs/Makefile.in
@@ -26,7 +26,8 @@ SRCS= debug_cmds.c $(srcdir)/debugfs.c $(srcdir)/util.c $(srcdir)/ls.c \
LIBS= $(LIBEXT2FS) $(LIBE2P) $(LIBSS) $(LIBCOM_ERR) $(LIBBLKID) \
$(LIBUUID)
-DEPLIBS= $(LIBEXT2FS) $(LIBE2P) $(DEPLIBSS) $(LIBCOM_ERR) $(DEPLIBBLKID) $(DEPLIBUUID)
+DEPLIBS= $(LIBEXT2FS) $(LIBE2P) $(DEPLIBSS) $(DEPLIBCOM_ERR) \
+ $(DEPLIBBLKID) $(DEPLIBUUID)
.c.o:
@echo " CC $<"