[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [RFC PATCH v3 1/1 Hurd]hurd: Add a libstore library without libparte
From: |
Samuel Thibault |
Subject: |
Re: [RFC PATCH v3 1/1 Hurd]hurd: Add a libstore library without libparted |
Date: |
Sun, 12 Jan 2025 15:29:20 +0100 |
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