0
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2025-04-25 17:40:20 +00:00
Files
openwrt/tools/util-linux/patches/100-fix_include_order.patch
Felix Fietkau eea1d86482 util-linux: change include order to fix build error
Prevent accidentally including an old version of uuid.h, which causes
the build to fail because of missing definitions.

Signed-off-by: Felix Fietkau <nbd@nbd.name>
2025-04-23 10:29:14 +02:00

13 lines
230 B
Diff

--- a/libuuid/src/gen_uuid.c
+++ b/libuuid/src/gen_uuid.c
@@ -86,8 +86,8 @@
#include <signal.h>
-#include "all-io.h"
#include "uuidP.h"
+#include "all-io.h"
#include "uuidd.h"
#include "randutils.h"
#include "strutils.h"