diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2019-04-21 18:27:20 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2019-04-21 18:27:20 +0200 |
commit | da27fb577d5f0b3e86c5ea0408383eef7a7bef2e (patch) | |
tree | ef46c75108da1991e1ab6e5c70f3760854a81fea /shutdown | |
parent | db98f4afb07c5083ab01168dd8ea45a7e09bd51b (diff) | |
download | hurd-da27fb577d5f0b3e86c5ea0408383eef7a7bef2e.tar.gz hurd-da27fb577d5f0b3e86c5ea0408383eef7a7bef2e.tar.bz2 hurd-da27fb577d5f0b3e86c5ea0408383eef7a7bef2e.zip |
shutdown: Fix static link
* shutdown/Makefile (LDLIBS): Add -lpthread.
Diffstat (limited to 'shutdown')
-rw-r--r-- | shutdown/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shutdown/Makefile b/shutdown/Makefile index 2d2593c0..73813dab 100644 --- a/shutdown/Makefile +++ b/shutdown/Makefile @@ -20,6 +20,7 @@ makemode := server SRCS = shutdown.c acpi_shutdown.c HURDLIBS = ports shouldbeinlibc trivfs iohelp ihash fshelp +LDLIBS = -lpthread target = shutdown MIGSTUBS = shutdownServer.o MIGSFLAGS = -imacros $(srcdir)/mig-mutate.h |