diff options
author | Theodore Ts'o <tytso@mit.edu> | 2009-07-01 22:06:51 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2009-07-01 22:06:51 -0400 |
commit | a6a1c0815c045fd12f65546e16d495338097f32a (patch) | |
tree | f2861ce4dff508f7898d80f0031289bb8e629325 /debugfs | |
parent | dd6d671b86aff52a9f3eb5d1ff8a0ebd99eb4559 (diff) | |
download | e2fsprogs-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.in | 3 |
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 $<" |