Hey all, e2fsprogs currently hardcodes 'ar' in one of it's makefiles. This is fixed with this patch: Upstream: no Author: Bjorn Pagen <bjornpagen@xxxxxxxxx> Reason: e2fsprogs does not merge, calls blacklisted 'ar' -- diff --git a/intl/Makefile.in.old b/intl/Makefile.in index 66d7512..3024494 100644 --- a/intl/Makefile.in +++ b/intl/Makefile.in @@ -81,7 +81,7 @@ mkinstalldirs = $(SHELL) $(MKINSTALLDIRS) l = @INTL_LIBTOOL_SUFFIX_PREFIX@ -AR = ar +AR = @AR@ CC = @CC@ LIBTOOL = @LIBTOOL@ RANLIB = @RANLIB@ -- Thanks, Bjorn Pagen