Zhaoming Luo, le dim. 12 janv. 2025 20:17:31 +0800, a ecrit:
> > > -libstore.so-LDLIBS += $(PARTED_LIBS) -ldl
> > > +ifeq ($(EXCLUDE_PARTED), 1)
> > > +  libstore-noparted.so-LDLIBS += -ldl
> > > +else
> > > +  libstore.so-LDLIBS += $(PARTED_LIBS) -ldl
> > 
> > Better use 
> > 
> > $(libname).so-LDLIBS += -ldl
> > ifeq ($(USE_PARTED), 1)
> >   $(libname).so-LDLIBS += $(PARTED_LIBS)
> > endif
> 
> OK. Then `USE_PARTED ?= 1` will need to be added in the libstore Makefile.

Yes, that's fine.

Samuel

Reply via email to