diff options
author | Theodore Ts'o <tytso@mit.edu> | 2008-04-17 16:54:24 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2008-04-17 16:56:09 -0400 |
commit | daf7a6e5d1621d4d84feabedb286e23dc5ad7dbb (patch) | |
tree | 4d39a0dae69fd537b94a5d2ea1b89b2349f32759 /debugfs | |
parent | 1ca1059fd0126fd2c065f272a566c18f14bab16d (diff) | |
download | e2fsprogs-daf7a6e5d1621d4d84feabedb286e23dc5ad7dbb.tar.gz |
Fix tst_extents build when building w/o dynamic libraries
$(LIBSS) should automatically include @DLOPEN_LIB@ so the right thing
happens for programs that need to use the ss library.
Reorder the library link order for tst_extents since the blkid library
uses libuuid functions.
Thanks to Eric Sandeen for pointing this problem out!
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'debugfs')
-rw-r--r-- | debugfs/Makefile.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/debugfs/Makefile.in b/debugfs/Makefile.in index bdba326c..cb3efcb5 100644 --- a/debugfs/Makefile.in +++ b/debugfs/Makefile.in @@ -8,7 +8,6 @@ VPATH = @srcdir@ top_builddir = .. my_dir = debugfs INSTALL = @INSTALL@ -DLOPEN_LIB = @DLOPEN_LIB@ @MCONFIG@ @@ -26,7 +25,7 @@ SRCS= debug_cmds.c $(srcdir)/debugfs.c $(srcdir)/util.c $(srcdir)/ls.c \ $(srcdir)/htree.c $(srcdir)/unused.c LIBS= $(LIBEXT2FS) $(LIBE2P) $(LIBSS) $(LIBCOM_ERR) $(LIBBLKID) \ - $(LIBUUID) $(DLOPEN_LIB) + $(LIBUUID) DEPLIBS= $(LIBEXT2FS) $(LIBE2P) $(LIBSS) $(LIBCOM_ERR) $(DEPLIBBLKID) $(DEPLIBUUID) .c.o: |