blob: f3f5fd8231432ffcab9fa42aef2dc0e996cacfd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
NOTE = "This is just a dummy package to get packages stop complaining about gconftool-2 \
which they are not using anyway... :D"
PR = "r1"
inherit native
do_install() {
install -d ${D}${bindir}
echo "#!/bin/sh" >${D}${bindir}/gconftool-2
chmod a+rx ${D}${bindir}/gconftool-2
}
NATIVE_INSTALL_WORKS = "1"
|