smlinux/base/mdadm/basename.patch
PktSurf 959de424b4 Upgraded base/libxml to version 2.13.4
Upgraded base/libxslt to version 1.1.42
Upgraded base/python3 to 3.9.20
Upgraded base/mdadm to 4.3
Fixed miscellaneous build files to putbstuff inside /usr
2024-10-20 17:37:22 +05:30

17 lines
412 B
Diff

--- a/mdadm.h
+++ b/mdadm.h
@@ -248,6 +248,14 @@ static inline void __put_unaligned32(__u
}
/*
+ * Ensure GNU basename behavior for musl libc
+ */
+#ifndef __GLIBC__
+#define basename(path) \
+ (strrchr((path),'/') ? strrchr((path),'/')+1 : (path))
+#endif
+
+/*
* Check at compile time that something is of a particular type.
* Always evaluates to 1 so you may use it easily in comparisons.
*/