summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustus Winter <4winter@informatik.uni-hamburg.de>2016-01-03 19:00:08 +0100
committerJustus Winter <4winter@informatik.uni-hamburg.de>2016-01-03 19:00:08 +0100
commit87d9f5513a5202c117fe05a489876da8cac79ecd (patch)
tree0f2e2209dd842574ac3b69dbee8b10c47875e5dc
parent6e24db6eee751066eac4f9b638aae40cda25d6ec (diff)
drop OTHERLIBS
-rw-r--r--eth-multiplexer/Makefile2
-rw-r--r--libbpf/Makefile2
-rw-r--r--libddekit/Makefile2
-rw-r--r--libmachdev/Makefile2
4 files changed, 4 insertions, 4 deletions
diff --git a/eth-multiplexer/Makefile b/eth-multiplexer/Makefile
index bfd065a3..35110a80 100644
--- a/eth-multiplexer/Makefile
+++ b/eth-multiplexer/Makefile
@@ -27,7 +27,7 @@ device-MIGSFLAGS="-DMACH_PAYLOAD_TO_PORT=ports_payload_get_name"
OBJS = $(SRCS:.c=.o) $(MIGSTUBS)
LCLHDRS = ethernet.h util.h vdev.h netfs_impl.h
HURDLIBS=ports fshelp shouldbeinlibc netfs bpf
-OTHERLIBS = -lpthread
+LDLIBS = -lpthread
CFLAGS += -I$(top_srcdir)/libbpf
diff --git a/libbpf/Makefile b/libbpf/Makefile
index d6ebdc3d..c5d52fe7 100644
--- a/libbpf/Makefile
+++ b/libbpf/Makefile
@@ -26,7 +26,7 @@ installhdrs = bpf_impl.h queue.h
MIGSTUBS =
OBJS = $(sort $(SRCS:.c=.o) $(MIGSTUBS))
-OTHERLIBS = -lpthread
+LDLIBS = -lpthread
MIGCOMSFLAGS =
diff --git a/libddekit/Makefile b/libddekit/Makefile
index 59f75095..e7ce2553 100644
--- a/libddekit/Makefile
+++ b/libddekit/Makefile
@@ -41,7 +41,7 @@ MIGSTUBS = experimentalUser.o
OBJS = $(sort $(SRCS:.c=.o) $(MIGSTUBS))
HURDLIBS = ports shouldbeinlibc hurd-slab
-OTHERLIBS = -lpthread
+LDLIBS = -lpthread
MIGCOMSFLAGS = -prefix dde_
diff --git a/libmachdev/Makefile b/libmachdev/Makefile
index 7116c3ee..f1e0cb53 100644
--- a/libmachdev/Makefile
+++ b/libmachdev/Makefile
@@ -27,7 +27,7 @@ LCLHDRS = dev_hdr.h device_emul.h ds_routines.h vm_param.h \
errno-base.h
installhdrs = machdev.h
HURDLIBS = ports trivfs bpf
-OTHERLIBS = -lpthread
+LDLIBS = -lpthread
OBJS = $(SRCS:.c=.o) $(MIGSTUBS)
MIGSFLAGS = -imacros $(srcdir)/mig-mutate.h
device-MIGSFLAGS="-DMACH_PAYLOAD_TO_PORT=ports_payload_get_name"