blob: 0c2416fd169942b56cee2929e44f0f1ca4dbe122 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require util-linux-ng.inc
PR = "${INC_PR}"
SRC_URI += "file://fix-make-c.patch;patch=1 \
file://optional-uuid.patch;patch=1 \
file://uclibc-compile.patch;patch=1 \
"
LDFLAGS_append = " -luuid"
LDFLAGS_append_libc-uclibc = " -luuid -lintl"
do_compile_prepend() {
sed -i /am__append_1/d ${S}/libs/blkid/src/Makefile
}
|