blob: 2f93e6b28ea58a476d3375a4614fb95f536cc17b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require gdb-cross.inc
do_configure () {
# override this function to avoid the autoconf/automake/aclocal/autoheader
# calls for now
gnu-configize
oe_runconf
}
do_stage() {
oe_runmake 'DESTDIR=${CROSS_DIR}' install
cp -pPR ${CROSS_DIR}${prefix}/* ${CROSS_DIR}
rm -rf ${CROSS_DIR}${prefix}
}
|