diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1996-07-19 22:03:57 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1996-07-19 22:03:57 +0000 |
commit | cfce83e61df9b38b330e1a9c4514b992aee48671 (patch) | |
tree | 0e516d8fdaf76bb983438744e2070a3f8690e050 | |
parent | 1bcf7626ee3d23d7906d15f196d9791bee66cbe0 (diff) |
add -I${.CURDIR} to get defs.h
-rw-r--r-- | usr.bin/rdist/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/rdist/Makefile b/usr.bin/rdist/Makefile index c63caeef9b9..6aa246422c6 100644 --- a/usr.bin/rdist/Makefile +++ b/usr.bin/rdist/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.5 1996/03/31 18:45:35 etheisen Exp $ +# $OpenBSD: Makefile,v 1.6 1996/07/19 22:03:56 millert Exp $ # # from: @(#)Makefile 5.11 (Berkeley) 3/12/91 PROG= rdist -CFLAGS+=-I. -DOS_H=\"os-openbsd.h\" +CFLAGS+=-I${.CURDIR} -I. -DOS_H=\"os-openbsd.h\" SRCS= gram.y child.c client.c common.c distopt.c docmd.c expand.c \ isexec.c lookup.c message.c rdist.c rshrcmd.c setargs.c signal.c CLEANFILES+=gram.c y.tab.h |