aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCameron Katri <me@cameronkatri.com>2021-05-12 18:02:18 -0400
committerCameron Katri <me@cameronkatri.com>2021-05-12 18:02:18 -0400
commite9ce4c027600d50e21264be4feb0b5fde7fdc9cc (patch)
treea867af730ce0d84c9b1b9a8332186a987e7d38d3
parentfced92c5c97fdd9c73c4ea81ef4a14592af6003e (diff)
downloadapple_cmds-e9ce4c027600d50e21264be4feb0b5fde7fdc9cc.tar.gz
apple_cmds-e9ce4c027600d50e21264be4feb0b5fde7fdc9cc.tar.zst
apple_cmds-e9ce4c027600d50e21264be4feb0b5fde7fdc9cc.zip
shell_cmds: Fix BINDIRs
-rw-r--r--shell_cmds/expr/Makefile2
-rw-r--r--shell_cmds/hostname/Makefile2
-rw-r--r--shell_cmds/pwd/Makefile2
-rw-r--r--shell_cmds/sleep/Makefile2
4 files changed, 8 insertions, 0 deletions
diff --git a/shell_cmds/expr/Makefile b/shell_cmds/expr/Makefile
index 8169f63..96c0a4e 100644
--- a/shell_cmds/expr/Makefile
+++ b/shell_cmds/expr/Makefile
@@ -1,4 +1,6 @@
PROG= expr
SRCS= expr.y
+BINDIR=/bin
+
.include <bsd.prog.mk>
diff --git a/shell_cmds/hostname/Makefile b/shell_cmds/hostname/Makefile
index 95cf6bb..a594745 100644
--- a/shell_cmds/hostname/Makefile
+++ b/shell_cmds/hostname/Makefile
@@ -1,3 +1,5 @@
PROG= hostname
+BINDIR=/bin
+
.include <bsd.prog.mk>
diff --git a/shell_cmds/pwd/Makefile b/shell_cmds/pwd/Makefile
index d5c1780..cf20a3e 100644
--- a/shell_cmds/pwd/Makefile
+++ b/shell_cmds/pwd/Makefile
@@ -1,3 +1,5 @@
PROG= pwd
+BINDIR=/bin
+
.include <bsd.prog.mk>
diff --git a/shell_cmds/sleep/Makefile b/shell_cmds/sleep/Makefile
index 193ae51..7fe93c5 100644
--- a/shell_cmds/sleep/Makefile
+++ b/shell_cmds/sleep/Makefile
@@ -1,3 +1,5 @@
PROG= sleep
+BINDIR=/bin
+
.include <bsd.prog.mk>