aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/libgsm/libgsm_1.0.12.bb
diff options
context:
space:
mode:
authorHenning Heinold <heinold@inf.fu-berlin.de>2009-08-01 22:43:16 +0200
committerHenning Heinold <heinold@inf.fu-berlin.de>2009-08-15 18:29:51 +0200
commit1c28b135a2728c8232522fd1570d6b13f5555d9c (patch)
tree2a5bbe003c6384597c88ade12c5e08471cd61a2b /recipes/libgsm/libgsm_1.0.12.bb
parentb4147042b4d8312ae31f8bea4536fcc9d02460a8 (diff)
downloadopenembedded-1c28b135a2728c8232522fd1570d6b13f5555d9c.tar.gz
libgsm: fix install, don't use hardcoded include path
* bump PR
Diffstat (limited to 'recipes/libgsm/libgsm_1.0.12.bb')
-rw-r--r--recipes/libgsm/libgsm_1.0.12.bb8
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes/libgsm/libgsm_1.0.12.bb b/recipes/libgsm/libgsm_1.0.12.bb
index 9c96f4d39f..d24cbdb8e5 100644
--- a/recipes/libgsm/libgsm_1.0.12.bb
+++ b/recipes/libgsm/libgsm_1.0.12.bb
@@ -4,7 +4,7 @@ PRIORITY = "optional"
#DEPENDS = ""
LICENSE = "libgsm"
-PR = "r0"
+PR = "r1"
SRC_URI = "http://user.cs.tu-berlin.de/~jutta/gsm/gsm-${PV}.tar.gz \
file://01_makefile.patch;patch=1 \
@@ -28,9 +28,9 @@ do_compile() {
do_install() {
oe_libinstall -a -C lib libgsm ${D}${libdir}
oe_libinstall -so -C lib libgsm ${D}${libdir}
- install -d ${D}/usr/include/gsm
- install -m 0644 ${S}/inc/gsm.h ${D}/usr/include/gsm/
- cd ${D}/usr/include/
+ install -d ${D}${includedir}/gsm
+ install -m 0644 ${S}/inc/gsm.h ${D}${includedir}/gsm/
+ cd ${D}${includedir}
ln -s gsm/gsm.h gsm.h
}