blob: 08f726192fd78567c0894f75cfa3b160769a1145 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# glib always provides bash-completion output, package the output but prevent
# the dependency chain on bash (via bash-completion) for mingw32 targets only.
RDEPENDS_${PN}-bash-completion_remove_mingw32 = "bash-completion"
# libmount is not buildable for mingw/windows
PACKAGECONFIG_remove_mingw32 = "libmount"
FILES_${PN}_append_mingw32 = " \
${bindir}/lib*.dll \
${libexecdir}/*gio-querymodules.exe \
"
FILES_${PN}-dev_append_mingw32 = " ${libdir}/*.def"
FILES_${PN}-utils_mingw32 = "${bindir}/*.exe"
|