> > Meanwhile, found a bug in Makefile: > > > > --- a/src/idmapped-mounts/Makefile > > +++ b/src/idmapped-mounts/Makefile > > @@ -25,11 +25,11 @@ depend: .dep > > > > include $(BUILDRULES) > > > > -idmapped-mounts: > > +idmapped-mounts: $(CFILES_IDMAPPED_MOUNTS) > > @echo " [CC] $@" > > $(Q)$(LTLINK) $(CFILES_IDMAPPED_MOUNTS) -o $@ $(CFLAGS) > > $(LDFLAGS) $(LDLIBS) > > > > -mount-idmapped: > > +mount-idmapped: $(CFILES_MOUNT_IDMAPPED) > > @echo " [CC] $@" > > $(Q)$(LTLINK) $(CFILES_MOUNT_IDMAPPED) -o $@ $(CFLAGS) > > $(LDFLAGS) $(LDLIBS) > > Stupid question maybe but what is the reason for this change? > It builds fine without those lines. > > Building idmapped-mounts > [CC] idmapped-mounts > [CC] mount-idmapped > My mistake. You are right. It should be fine as is. I may have messed up something else while building. You may take the fix or leave it - as you wish. Thanks, Amir.