The attached patch adds the libraries from 'our' source build of e2fsprogs to the mklibs search list. e2fsprogs needs to be in the mklibs list because other filesystems use its libraries (e.g. parted, jfsutils, xfsprogs, and even util-linux access libraries from e2fsprogs).
This patch presumes that the Makefile patch I proposed earlier today has already been applied. The patch is structured to leave the search list alone on ppc64 so it won't change anything on that build. However, ppc64 probably should have this directory in the mklibs search path.
--- Makefile Thu May 12 15:03:19 2005 +++ Makefile Thu May 12 17:05:32 2005 @@ -258,6 +258,10 @@ # host distro, and it is built with kerberos enabled. BOEL_MKLIBS_LOCATIONS := $(BOEL_MKLIBS_LOCATIONS):/usr/kerberos/lib BOEL_MKLIBS_LOCATIONS := $(BOEL_MKLIBS_LOCATIONS):$(SRC_DIR)/$(DISCOVER_DIR)/lib/.libs +ifndef IS_PPC64 +BOEL_MKLIBS_LOCATIONS := $(BOEL_MKLIBS_LOCATIONS):$(SRC_DIR)/$(E2FSPROGS_DIR)/lib +endif + show_mklibs_locations: @echo $(BOEL_MKLIBS_LOCATIONS)
