Files
ports/sysutils/busybox/files/patch-coreutils_mknod.c
T
Oleksii Samorukov d8ef181ea1 sysutils/busybox: Update to 1.32.1
- Update to 1.32.1 and adopt patches to the upstream changes
- Enable more applets

Approved by:	krion
Differential Revision:	https://reviews.freebsd.org/D27934
2021-01-04 16:16:52 +00:00

13 lines
312 B
C

--- coreutils/mknod.c.orig 2021-01-01 10:52:27 UTC
+++ coreutils/mknod.c
@@ -36,7 +36,9 @@
//usage: "$ mknod /dev/fd0 b 2 0\n"
//usage: "$ mknod -m 644 /tmp/pipe p\n"
+#ifdef __linux__
#include <sys/sysmacros.h> // For makedev
+#endif
#include "libbb.h"
#include "libcoreutils/coreutils.h"