Message ID | 1411261282-26831-2-git-send-email-xnox@debian.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Sun, Sep 21, 2014 at 02:01:20AM +0100, Dimitri John Ledkov wrote: > --- a/Makefile > +++ b/Makefile > @@ -26,7 +26,7 @@ TESTS = fsck-tests.sh convert-tests.sh > INSTALL = install > prefix ?= /usr/local > bindir = $(prefix)/bin > -lib_LIBS = -luuid -lblkid -lm -lz -llzo2 -L. > +lib_LIBS = -luuid -lblkid -lm -lz -llzo2 -lcom_err -L. This will add the com_err library to all binaries, while it's actually used only by the btrfs-convert utility and this dependency has been properly added in ef85e7e285daf (released in 3.12). One can add a per-target libraries like btrfs_convert_libs = -lext2fs -lcom_err Also please be more descriptive what the actual error is in the changelog itself so I don't have to look it up in the referenced bug. -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/Makefile b/Makefile index e721e99..441e925 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ TESTS = fsck-tests.sh convert-tests.sh INSTALL = install prefix ?= /usr/local bindir = $(prefix)/bin -lib_LIBS = -luuid -lblkid -lm -lz -llzo2 -L. +lib_LIBS = -luuid -lblkid -lm -lz -llzo2 -lcom_err -L. libdir ?= $(prefix)/lib incdir = $(prefix)/include/btrfs LIBS = $(lib_LIBS) $(libs_static)