diff options
author | wpaul <wpaul@FreeBSD.org> | 1995-04-02 16:00:30 +0000 |
---|---|---|
committer | wpaul <wpaul@FreeBSD.org> | 1995-04-02 16:00:30 +0000 |
commit | 81ed6c232fd2ca2bc3b6e75769a3c4fa6d07243c (patch) | |
tree | ffab628f5c329dbf1072d9a90edb4fda63a9038a | |
parent | 93d526e43b20ebd9c84f184c2619384253575c8b (diff) | |
download | FreeBSD-src-81ed6c232fd2ca2bc3b6e75769a3c4fa6d07243c.zip FreeBSD-src-81ed6c232fd2ca2bc3b6e75769a3c4fa6d07243c.tar.gz |
Make yppush compile again when obj directory exists. *groan*
-rw-r--r-- | gnu/usr.bin/yppush/Makefile | 3 | ||||
-rw-r--r-- | gnu/usr.bin/yppush/yppush.c | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/gnu/usr.bin/yppush/Makefile b/gnu/usr.bin/yppush/Makefile index b1cd21f..4939ff9 100644 --- a/gnu/usr.bin/yppush/Makefile +++ b/gnu/usr.bin/yppush/Makefile @@ -1,12 +1,11 @@ # from: @(#)Makefile 5.8 (Berkeley) 7/28/90 -# $Id: Makefile,v 1.4 1995/03/02 21:59:51 wpaul Exp $ +# $Id: Makefile,v 1.3 1995/04/02 01:10:08 wpaul Exp $ PROG= yppush SRCS= yp_svc.c yp_clnt.c yppush.c MAN8= yppush.8 CLEANFILES= yp_svc.c yp_clnt.c yp.h yp.x -LDADD=/usr/src/lib/libc/obj/libc.a yp_svc.c: yp.h rm -f yp.x diff --git a/gnu/usr.bin/yppush/yppush.c b/gnu/usr.bin/yppush/yppush.c index 3f5d66f..58008f4 100644 --- a/gnu/usr.bin/yppush/yppush.c +++ b/gnu/usr.bin/yppush/yppush.c @@ -18,7 +18,7 @@ Modified for use with FreeBSD 2.x by Bill Paul (wpaul@ctr.columbia.edu) - $Id: yppush.c,v 1.2 1995/02/05 21:48:00 wpaul Exp $ + $Id: yppush.c,v 1.3 1995/04/02 01:10:13 wpaul Exp $ */ #include <stdio.h> @@ -28,7 +28,7 @@ #include <signal.h> #include <rpc/rpc.h> #include <paths.h> -#include "yp.h" +#include <rpcsvc/yp.h> /* * ypclnt.h does not have a definition for struct dom_binding, * although it is used there. It is defined in yp_prot.h, but |