From 910452727fc277c1caec7612b36c37b58d845350 Mon Sep 17 00:00:00 2001 From: Saul Wold Date: Wed, 9 May 2012 11:08:57 -0700 Subject: eglibc: Add patch to fix /var installation location This address the packaging issues since it's installed in the wrong place ERROR: For recipe eglibc-nativesdk, the following files/directories were installed but not shipped in any package: ERROR: /var ERROR: /var/db ERROR: /var/db/Makefile Signed-off-by: Saul Wold --- .../eglibc/eglibc-2.15/add-prefix-to-var.patch | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 meta/recipes-core/eglibc/eglibc-2.15/add-prefix-to-var.patch (limited to 'meta/recipes-core/eglibc/eglibc-2.15') diff --git a/meta/recipes-core/eglibc/eglibc-2.15/add-prefix-to-var.patch b/meta/recipes-core/eglibc/eglibc-2.15/add-prefix-to-var.patch new file mode 100644 index 0000000000..4c83aa25dd --- /dev/null +++ b/meta/recipes-core/eglibc/eglibc-2.15/add-prefix-to-var.patch @@ -0,0 +1,19 @@ + +Upstream-Status: Pending + +Signed-off-by: Saul Wold + + +Index: libc/Makeconfig +=================================================================== +--- libc.orig/Makeconfig ++++ libc/Makeconfig +@@ -293,7 +293,7 @@ inst_sysconfdir = $(install_root)$(sysco + + # Directory for the database files and Makefile for nss_db. + ifndef vardbdir +-vardbdir = /var/db ++vardbdir = $(prefix)/var/db + endif + inst_vardbdir = $(install_root)$(vardbdir) + -- cgit 1.2.3-korg