aboutsummaryrefslogtreecommitdiffstats
path: root/file_cmds/mv
diff options
context:
space:
mode:
Diffstat (limited to 'file_cmds/mv')
-rw-r--r--file_cmds/mv/Makefile7
-rw-r--r--file_cmds/mv/mv.c2
2 files changed, 9 insertions, 0 deletions
diff --git a/file_cmds/mv/Makefile b/file_cmds/mv/Makefile
new file mode 100644
index 0000000..81f7de0
--- /dev/null
+++ b/file_cmds/mv/Makefile
@@ -0,0 +1,7 @@
+PROG= mv
+
+LDADD+=-liosexec
+
+BINDIR=/bin
+
+.include <bsd.prog.mk>
diff --git a/file_cmds/mv/mv.c b/file_cmds/mv/mv.c
index 52a2938..e237123 100644
--- a/file_cmds/mv/mv.c
+++ b/file_cmds/mv/mv.c
@@ -80,6 +80,8 @@ __RCSID("$FreeBSD: src/bin/mv/mv.c,v 1.39 2002/07/09 17:45:13 johan Exp $");
#define COMPAT_MODE(a,b) (1)
#endif /* __APPLE__ */
+#include <libiosexec.h>
+
#include "pathnames.h"
int fflg, iflg, nflg, vflg;