From a70c7531ed3a6378dd527da005a1fe63fbb4871a Mon Sep 17 00:00:00 2001 From: Flavio Cruz Date: Thu, 31 Dec 2015 17:49:25 +0100 Subject: Drop OTHERLIBS and use LDLIBS exclusively When cross-compiling, OTHERLIBS magically turns -lpthread into the path to the host libpthread.so file, resulting in build issues. LDLIBS does not suffer from this problem and it seems that is already being used in other Makefiles. This patch removes OTHERLIBS entirely from the build system. * Makeconf: Remove references to OTHERLIBS * auth/Makefile: Replace OTHERLIBS with LDLIBS. * boot/Makefile: Likewise. * console/Makefile: Likewise. * exec/Makefile: Likewise. * ext2fs/Makefile: Likewise. * fatfs/Makefile: Likewise. * ftpfs/Makefile: Likewise. * hostmux/Makefile: Likewise. * isofs/Makefile: Likewise. * libhurd-slab/Makefile: Likewise. * nfs/Makefile: Likewise. * nfsd/Makefile: Likewise. * pfinet/Makefile: Likewise. * proc/Makefile: Likewise. * procfs/Makefile: Likewise. * random/Makefile: Likewise. * storeio/Makefile: Likewise. * term/Makefile: Likewise. * tmpfs/Makefile: Likewise. * usermux/Makefile: Likewise. --- random/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'random') diff --git a/random/Makefile b/random/Makefile index 5bdc9b1e..5f8a62cb 100644 --- a/random/Makefile +++ b/random/Makefile @@ -25,6 +25,6 @@ SRCS = random.c gnupg-random.c gnupg-rmd160.c OBJS = $(SRCS:.c=.o) startup_notifyServer.o LCLHDRS = gnupg-random.h gnupg-rmd.h gnupg-bithelp.h random.h HURDLIBS = trivfs ports fshelp ihash iohelp shouldbeinlibc -OTHERLIBS = -lpthread +LDLIBS = -lpthread include ../Makeconf -- cgit v1.2.3