blob: 9c1a4e538c217514ad0edf1b680c626953e9d6ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
DESCRIPTION = "Helper script for OE's llvm support"
BBCLASSEXTEND = "native"
SRC_URI = "file://llvm-config"
PACKAGES = ""
do_install() {
install -d ${D}${bindir}
install -m 0755 ${WORKDIR}/llvm-config ${D}${bindir}
}
|