mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2025-04-25 17:40:20 +00:00
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>
13 lines
230 B
Diff
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"
|