blob: 2d27a0a3d4460363668e9b2107dab3d6ab3d0d5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
do_configure:append:mingw32 () {
# don't try to build the other dtc components when installing libs
sed -i 's/install-lib: all/install-lib: libfdt/g' ${S}/Makefile
}
do_compile:mingw32 () {
oe_runmake libfdt
}
do_install:mingw32 () {
oe_runmake install-lib install-includes
}
RDEPENDS:${PN}-misc:remove:mingw32 = "bash"
|