diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2023-04-07 01:18:40 -0400 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-04-09 15:07:11 +0200 |
commit | 608123211f8b4065863f866cd3abd9589731de6a (patch) | |
tree | 5295c2e587eab422c75edb85113e17ec0d3fc162 /libshouldbeinlibc | |
parent | 219e8084da9e964fb7053033a2a1c923955fa0db (diff) | |
download | hurd-608123211f8b4065863f866cd3abd9589731de6a.tar.gz hurd-608123211f8b4065863f866cd3abd9589731de6a.tar.bz2 hurd-608123211f8b4065863f866cd3abd9589731de6a.zip |
Link libshouldbeinlibc with default pager user stubs
There was an implicit dependency on -lmachuser. Adding a dependency to
generated stubs from hurd so that we can stop providing the stubs in
machuser from glibc.
Message-Id: <ZC+nsGvhsOwt6XyB@jupiter.tail36e24.ts.net>
Diffstat (limited to 'libshouldbeinlibc')
-rw-r--r-- | libshouldbeinlibc/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libshouldbeinlibc/Makefile b/libshouldbeinlibc/Makefile index 2edf15f4..d3f80f8c 100644 --- a/libshouldbeinlibc/Makefile +++ b/libshouldbeinlibc/Makefile @@ -38,8 +38,9 @@ installhdrs = idvec.h timefmt.h maptime.h \ installhdrsubdir = . +MIGSTUBS = default_pagerUser.o LDLIBS += $(and $(HAVE_LIBCRYPT),-lcrypt) -OBJS = $(SRCS:.c=.o) +OBJS = $(SRCS:.c=.o) $(MIGSTUBS) include ../Makeconf |