aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCameron Katri <me@cameronkatri.com>2021-05-10 15:02:54 -0400
committerCameron Katri <me@cameronkatri.com>2021-05-10 15:02:54 -0400
commit2f0f42e42d66047cb24541851bb661230e0cb168 (patch)
tree7556b19c46a1909b0ce8c4cea87f5af13e8e01d7
parent741efd6ee2f0defb40def8351d3f5a92fc0ab7c8 (diff)
downloadapple_cmds-2f0f42e42d66047cb24541851bb661230e0cb168.tar.gz
apple_cmds-2f0f42e42d66047cb24541851bb661230e0cb168.tar.zst
apple_cmds-2f0f42e42d66047cb24541851bb661230e0cb168.zip
shell_cmds: Fix include
-rw-r--r--shell_cmds/locate/bigram/Makefile2
-rw-r--r--shell_cmds/locate/code/Makefile2
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 <bsd.prog.mk>
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 <bsd.prog.mk>