aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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>