diff options
author | steve <steve@FreeBSD.org> | 1997-08-13 17:35:00 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1997-08-13 17:35:00 +0000 |
commit | ccbdaeb2aaaff8d6b64f923ffc746cd639d4ada9 (patch) | |
tree | d20cadcf52c132d3bbfe51c0f1f33b12eb19b577 | |
parent | 6bb904da802784134c7c18b540d4d04f4f1d568f (diff) | |
download | FreeBSD-src-ccbdaeb2aaaff8d6b64f923ffc746cd639d4ada9.zip FreeBSD-src-ccbdaeb2aaaff8d6b64f923ffc746cd639d4ada9.tar.gz |
Use -I${.CURDIR}/../../sys so that the path is relative
to the source code directory.
Submitted by: bde
-rw-r--r-- | bin/ps/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ps/Makefile b/bin/ps/Makefile index e5409ad..8d797bc 100644 --- a/bin/ps/Makefile +++ b/bin/ps/Makefile @@ -1,9 +1,9 @@ -# $Id: Makefile,v 1.8 1997/02/22 14:04:57 peter Exp $ +# $Id: Makefile,v 1.9 1997/08/11 02:36:09 steve Exp $ # @(#)Makefile 8.1 (Berkeley) 6/2/93 PROG= ps SRCS= fmt.c keyword.c nlist.c print.c ps.c -CFLAGS+=-I../../sys +CFLAGS+=-I${.CURDIR}/../../sys DPADD= ${LIBM} ${LIBKVM} LDADD= -lm -lkvm BINGRP= kmem |