mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
gdm: Fix build on gnome'less build systems
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
parent
1dd63580da
commit
9826cc6fea
|
|
@ -0,0 +1,37 @@
|
|||
In cross environment we have to prepend the sysroot to the path found by
|
||||
pkgconfig since the path returned from pkgconfig does not have sysroot prefixed
|
||||
it ends up using the files from host system. Now usually people have gnome installed
|
||||
so the build succeeds but if you dont have gnome installed on build host then
|
||||
it wont find the files on host system and packages using gnome-doc-utils wont
|
||||
compile.
|
||||
|
||||
This should work ok with non sysrooted builds too since in those cases PKG_CONFIG_SYSROOT_DIR
|
||||
will be empty
|
||||
|
||||
Upstream-Status: Pending
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
|
||||
Index: gdm-2.32.2/gnome-doc-utils.make
|
||||
===================================================================
|
||||
--- gdm-2.32.2.orig/gnome-doc-utils.make 2011-05-31 08:06:59.000000000 -0700
|
||||
+++ gdm-2.32.2/gnome-doc-utils.make 2011-09-25 15:32:39.540992521 -0700
|
||||
@@ -133,12 +133,12 @@
|
||||
_xml2po ?= `which xml2po`
|
||||
_xml2po_mode = $(if $(DOC_ID),mallard,docbook)
|
||||
|
||||
-_db2html ?= `$(PKG_CONFIG) --variable db2html gnome-doc-utils`
|
||||
-_db2omf ?= `$(PKG_CONFIG) --variable db2omf gnome-doc-utils`
|
||||
-_malrng ?= `$(PKG_CONFIG) --variable malrng gnome-doc-utils`
|
||||
-_chunks ?= `$(PKG_CONFIG) --variable xmldir gnome-doc-utils`/gnome/xslt/docbook/utils/chunks.xsl
|
||||
-_credits ?= `$(PKG_CONFIG) --variable xmldir gnome-doc-utils`/gnome/xslt/docbook/utils/credits.xsl
|
||||
-_ids ?= $(shell $(PKG_CONFIG) --variable xmldir gnome-doc-utils)/gnome/xslt/docbook/utils/ids.xsl
|
||||
+_db2html ?= ${PKG_CONFIG_SYSROOT_DIR}`$(PKG_CONFIG) --variable db2html gnome-doc-utils`
|
||||
+_db2omf ?= ${PKG_CONFIG_SYSROOT_DIR}`$(PKG_CONFIG) --variable db2omf gnome-doc-utils`
|
||||
+_malrng ?= ${PKG_CONFIG_SYSROOT_DIR}`$(PKG_CONFIG) --variable malrng gnome-doc-utils`
|
||||
+_chunks ?= ${PKG_CONFIG_SYSROOT_DIR}`$(PKG_CONFIG) --variable xmldir gnome-doc-utils`/gnome/xslt/docbook/utils/chunks.xsl
|
||||
+_credits ?= ${PKG_CONFIG_SYSROOT_DIR}`$(PKG_CONFIG) --variable xmldir gnome-doc-utils`/gnome/xslt/docbook/utils/credits.xsl
|
||||
+_ids ?= ${PKG_CONFIG_SYSROOT_DIR}$(shell $(PKG_CONFIG) --variable xmldir gnome-doc-utils)/gnome/xslt/docbook/utils/ids.xsl
|
||||
|
||||
if ENABLE_SK
|
||||
_ENABLE_SK = true
|
||||
|
|
@ -4,13 +4,14 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
|
|||
|
||||
DEPENDS = "xinput gnome-panel tcp-wrappers libcanberra libxklavier grep consolekit libpam gnome-doc-utils gtk+ xrdb"
|
||||
|
||||
PR = "r4"
|
||||
PR = "r5"
|
||||
|
||||
inherit gnome update-rc.d
|
||||
|
||||
SRC_URI += " \
|
||||
file://cross-xdetection.diff \
|
||||
file://0001-Remove-user-switch-applet.patch \
|
||||
file://sysrooted-pkg-config.patch \
|
||||
file://%gconf-tree.xml \
|
||||
file://gdm \
|
||||
file://gdm.conf \
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user