blob: 19c5ad2106310b350308e87ac5bba3c52bb580a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require sdcc_${PV}.bb
inherit native
DEPENDS = ""
# don't need native-tools patch here
SRC_URI = "${SOURCEFORGE_MIRROR}/sdcc/sdcc-${PV}.tar.gz \
file://gcc4.patch;patch=1"
do_stage() {
find bin -type f -perm 0755 -exec install -m 0755 {} ${STAGING_BINDIR} \;
}
|