summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r--meta/recipes-devtools/opkg/opkg.inc10
1 files changed, 8 insertions, 2 deletions
diff --git a/meta/recipes-devtools/opkg/opkg.inc b/meta/recipes-devtools/opkg/opkg.inc
index f157188947..47458ff350 100644
--- a/meta/recipes-devtools/opkg/opkg.inc
+++ b/meta/recipes-devtools/opkg/opkg.inc
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
9 file://src/opkg-cl.c;beginline=1;endline=20;md5=321f658c3f6b6c832e25c8850b5dffba" 9 file://src/opkg-cl.c;beginline=1;endline=20;md5=321f658c3f6b6c832e25c8850b5dffba"
10 10
11PE = "1" 11PE = "1"
12INC_PR = "r11" 12INC_PR = "r12"
13 13
14# Werror gives all kinds bounds issuses with gcc 4.3.3 14# Werror gives all kinds bounds issuses with gcc 4.3.3
15do_configure_prepend() { 15do_configure_prepend() {
@@ -43,11 +43,17 @@ FILES_libopkg-dev = "${libdir}/*.la ${libdir}/*.so"
43FILES_libopkg-staticdev = "${libdir}/*.a" 43FILES_libopkg-staticdev = "${libdir}/*.a"
44FILES_libopkg = "${libdir}/*.so.* ${localstatedir}/lib/opkg/" 44FILES_libopkg = "${libdir}/*.so.* ${localstatedir}/lib/opkg/"
45 45
46# We need to create the lock directory
47do_install_append() { 46do_install_append() {
47 # We need to create the lock directory
48 install -d ${D}${localstatedir}/lib/opkg 48 install -d ${D}${localstatedir}/lib/opkg
49} 49}
50 50
51do_install_append_class-native() {
52 if [ "${PREFERRED_PROVIDER_virtual/update-alternatives-native}" != "${PN}" ]; then
53 rm ${D}${bindir}/update-alternatives
54 fi
55}
56
51pkg_postinst_${PN} () { 57pkg_postinst_${PN} () {
52#!/bin/sh 58#!/bin/sh
53if [ "x$D" != "x" ]; then 59if [ "x$D" != "x" ]; then