From 2f0f42e42d66047cb24541851bb661230e0cb168 Mon Sep 17 00:00:00 2001 From: Cameron Katri Date: Mon, 10 May 2021 15:02:54 -0400 Subject: [PATCH] shell_cmds: Fix include --- shell_cmds/locate/bigram/Makefile | 2 +- shell_cmds/locate/code/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/shell_cmds/locate/bigram/Makefile b/shell_cmds/locate/bigram/Makefile index 1740f30..2c5fc1b 100644 --- a/shell_cmds/locate/bigram/Makefile +++ b/shell_cmds/locate/bigram/Makefile @@ -3,6 +3,6 @@ MAN= locate.bigram.8 BINDIR=/usr/libexec -CFLAGS+=-I../locate +CFLAGS+=-I${.CURDIR}/../locate .include diff --git a/shell_cmds/locate/code/Makefile b/shell_cmds/locate/code/Makefile index 4c06f77..1d3e5ea 100644 --- a/shell_cmds/locate/code/Makefile +++ b/shell_cmds/locate/code/Makefile @@ -3,6 +3,6 @@ MAN= locate.code.8 BINDIR=/usr/libexec -CFLAGS+=-I../locate +CFLAGS+=-I${.CURDIR}/../locate .include -- 2.47.1