Another one that's been in RH/Fedora specfiles a while. Remove timestamps from .po files to avoid multilib conflicts. It ain't pretty but it works. Signed-off-by: Eric Sandeen <sandeen@xxxxxxxxxx> Addresses-Red-Hat-Bugzilla: #245653 Index: e2fsprogs-git/po/Makefile.in.in =================================================================== --- e2fsprogs-git.orig/po/Makefile.in.in +++ e2fsprogs-git/po/Makefile.in.in @@ -118,10 +118,12 @@ $(DOMAIN).pot-update: $(POTFILES) $(srcd rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ else \ rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ - mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + sed -f remove-potcdate.sed < $(DOMAIN).po > $(srcdir)/$(DOMAIN).pot && \ + rm -f $(DOMAIN).po; \ fi; \ else \ - mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + sed -f remove-potcdate.sed < $(DOMAIN).po > $(srcdir)/$(DOMAIN).pot && \ + rm -f $(DOMAIN).po; \ fi; \ } - To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html