summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/openlmi/openlmi-providers/0001-fix-lib64-can-not-be-shiped-in-64bit-target.patch
diff options
context:
space:
mode:
authorleimaohui <leimaohui@cn.fujitsu.com>2015-08-25 13:19:56 +0800
committerMartin Jansa <Martin.Jansa@gmail.com>2015-08-31 19:11:12 +0200
commit1f7e41d5570eef9b3f33a2c002ab9894be41917d (patch)
tree57a9b8f88bf3ddac8094fbcb8a271c4df84aaa90 /meta-oe/recipes-extended/openlmi/openlmi-providers/0001-fix-lib64-can-not-be-shiped-in-64bit-target.patch
parentbe019b379479f4df346b34a940ec46aaa3534d22 (diff)
downloadmeta-openembedded-1f7e41d5570eef9b3f33a2c002ab9894be41917d.tar.gz
openlmi: add openlmi
OpenLMI = Open Linux Management Infrastructure. OpenLMI is open-source project aiming to improve management of Linux systems using WBEM standards. Signed-off-by: Lei Maohui <leimaohui@cn.fujitsu.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended/openlmi/openlmi-providers/0001-fix-lib64-can-not-be-shiped-in-64bit-target.patch')
-rw-r--r--meta-oe/recipes-extended/openlmi/openlmi-providers/0001-fix-lib64-can-not-be-shiped-in-64bit-target.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/openlmi/openlmi-providers/0001-fix-lib64-can-not-be-shiped-in-64bit-target.patch b/meta-oe/recipes-extended/openlmi/openlmi-providers/0001-fix-lib64-can-not-be-shiped-in-64bit-target.patch
new file mode 100644
index 0000000000..9c8ebe4c00
--- /dev/null
+++ b/meta-oe/recipes-extended/openlmi/openlmi-providers/0001-fix-lib64-can-not-be-shiped-in-64bit-target.patch
@@ -0,0 +1,31 @@
1From 7cecfa95f033b33a1c3260c214b2d0e5e81b4fd3 Mon Sep 17 00:00:00 2001
2From: Lei Maohui <leimaohui@cn.fujitsu.com>
3Date: Mon, 3 Aug 2015 02:05:56 +0900
4Subject: [PATCH] fix lib64 can not be shiped in 64bit target
5
6Signed-off-by: Lei Maohui <leimaohui@cn.fujitsu.com>
7---
8 CMakeLists.txt | 7 -------
9 1 file changed, 7 deletions(-)
10
11diff --git a/CMakeLists.txt b/CMakeLists.txt
12index 48ae206..3ead9c6 100644
13--- a/CMakeLists.txt
14+++ b/CMakeLists.txt
15@@ -21,13 +21,6 @@ else(HAS_STACK_PROTECTOR_STRONG)
16 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fstack-protector")
17 endif()
18
19-# Set LIB_SUFFIX to 64 on 64bit architectures
20-if(CMAKE_SIZEOF_VOID_P EQUAL 4)
21- set(LIB_SUFFIX "")
22-else(CMAKE_SIZEOF_VOID_P EQUAL 4)
23- SET(LIB_SUFFIX 64)
24-endif(CMAKE_SIZEOF_VOID_P EQUAL 4)
25-
26 if(NOT SYSCONF_INSTALL_DIR)
27 set(SYSCONF_INSTALL_DIR ${CMAKE_INSTALL_PREFIX}/etc)
28 endif(NOT SYSCONF_INSTALL_DIR)
29--
301.8.4.2
31