diff options
author | Thomas Bushnell <thomas@gnu.org> | 1996-09-17 16:43:48 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1996-09-17 16:43:48 +0000 |
commit | dcf8f5b059e9ae3f767dc4069859dceba756328a (patch) | |
tree | 0079e8ac765fb551a9778ede1643145a954992a4 /libpipe | |
parent | 88f8b13a55f5dac05830f486d0403b11b107c975 (diff) |
*** empty log message ***
Diffstat (limited to 'libpipe')
-rw-r--r-- | libpipe/ChangeLog | 5 | ||||
-rw-r--r-- | libpipe/Makefile | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/libpipe/ChangeLog b/libpipe/ChangeLog index cbc850c4..a87e0bd0 100644 --- a/libpipe/ChangeLog +++ b/libpipe/ChangeLog @@ -1,3 +1,8 @@ +Thu Sep 12 16:24:41 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> + + * Makefile (HURDLIBS): New variable. + (libpipe.so): Delete special dependency. + Tue Jul 16 11:33:34 1996 Michael I. Bushnell, p/BSG <mib@gnu.ai.mit.edu> * pipe.h (EWOULDBLOCK): Define to work around new libc bug. diff --git a/libpipe/Makefile b/libpipe/Makefile index 8fed5382..bb864dd4 100644 --- a/libpipe/Makefile +++ b/libpipe/Makefile @@ -1,6 +1,6 @@ # Makefile for libpipe # -# Copyright (C) 1995 Free Software Foundation, Inc. +# Copyright (C) 1995, 1996 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as @@ -26,8 +26,7 @@ SRCS = pq.c dgram.c pipe.c stream.c seqpack.c addr.c LCLHDRS = pipe.h pq.h OBJS = $(SRCS:.c=.o) +HURDLIBS=threads ports include ../Makeconf -libpipe.so: $(foreach lib,threads ports,\ - ../lib$(lib)/lib$(lib).so) |