From 5250936449e0f067fa9daca199a372bd1e1372d9 Mon Sep 17 00:00:00 2001 From: Sascha Wildner Date: Mon, 7 Aug 2017 00:45:23 +0200 Subject: [PATCH] ps(1): Remove -I${.CURDIR}/../../sys from the Makefile. FreeBSD did that in 2001 (r76812). It's not a bootstrap tool, so there is no reason to mix up include paths. --- bin/ps/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/ps/Makefile b/bin/ps/Makefile index f4dfc15f5a..01c45aec21 100644 --- a/bin/ps/Makefile +++ b/bin/ps/Makefile @@ -1,5 +1,4 @@ # $FreeBSD: src/bin/ps/Makefile,v 1.13 1999/11/17 13:37:30 peter Exp $ -# $DragonFly: src/bin/ps/Makefile,v 1.4 2005/02/06 06:16:40 okumoto Exp $ # @(#)Makefile 8.1 (Berkeley) 6/2/93 PROG= ps @@ -10,7 +9,7 @@ SRCS= fmt.c keyword.c nlist.c print.c ps.c # keep ps from being an unnecessary load # on large systems. # -CFLAGS+=-I${.CURDIR}/../../sys -DLAZY_PS +CFLAGS+=-DLAZY_PS DPADD= ${LIBM} ${LIBKVM} LDADD= -lm -lkvm #BINGRP= kmem -- 2.41.0