mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-08 17:39:24 +00:00
lockdev: Make baselib configurable
This ensures that baselib can be passed from bitbake tasks via environment Refresh patches Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -18,7 +18,7 @@ Date: Tue Feb 9 14:56:23 2010 +0100
|
||||
soname = ${libname}.so.${MVER}
|
||||
|
||||
# overwritten by caller (e.g.: debian/rules)
|
||||
@@ -72,6 +72,7 @@ install_doc: docs/lockdev.3
|
||||
@@ -73,6 +73,7 @@ install_doc: docs/lockdev.3
|
||||
install_run: ${shared}
|
||||
install -m755 -d ${libdir}
|
||||
install -m644 ${shared} ${libdir}
|
||||
|
||||
@@ -1,14 +1,16 @@
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -15,17 +15,17 @@ shared = ${libname}.${VER}.so
|
||||
@@ -15,17 +15,18 @@ shared = ${libname}.${VER}.so
|
||||
soname = ${libname}.so.${MVER}
|
||||
|
||||
# overwritten by caller (e.g.: debian/rules)
|
||||
-basedir = /usr/local
|
||||
+basedir ?= /usr/local
|
||||
+baselib ?= lib
|
||||
srcdir=.
|
||||
|
||||
libdir = ${basedir}/lib
|
||||
-libdir = ${basedir}/lib
|
||||
+libdir = ${basedir}/${baselib}
|
||||
incdir = ${basedir}/include
|
||||
mandir = ${basedir}/share/man
|
||||
|
||||
@@ -17,7 +19,7 @@
|
||||
-CFLAGS = -g
|
||||
-LDLIBS = -llockdev
|
||||
+CC ?= gcc
|
||||
+LCFLAGS ?= -g -O2 -fPIC -Wall -pipe -D_REENTRANT
|
||||
+LCFLAGS ?= -g -O2 -fPIC -Wall -pipe -D_REENTRANT
|
||||
+CFLAGS ?= -g
|
||||
+LDLIBS ?= -llockdev
|
||||
|
||||
|
||||
@@ -15,15 +15,15 @@ SRC_URI[debianpatch.md5sum] = "5ef6267c42fca9145e0af006ccb6aff7"
|
||||
SRC_URI[debianpatch.sha256sum] = "a5405c6ee5e97e45eeb1c81330a7e9f444a58bda5e6771fa30007516c115007e"
|
||||
|
||||
inherit lib_package perlnative
|
||||
export basedir="${D}${prefix}"
|
||||
|
||||
CFLAGS += " -D__GNU_LIBRARY__"
|
||||
|
||||
TARGET_CC_ARCH += "${LDFLAGS}"
|
||||
|
||||
EXTRA_OEMAKE = "basedir=${D}${prefix} baselib=${baselib} LD='${CC}' LD='${CC}'"
|
||||
do_compile() {
|
||||
oe_runmake basedir=${D}${prefix} LD="${CC}" LD="${CC}" shared static
|
||||
oe_runmake shared static
|
||||
}
|
||||
do_install() {
|
||||
oe_runmake DESTDIR=${D} basedir=${D}${prefix} install
|
||||
oe_runmake DESTDIR=${D} install
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user