blob: 40a064307e56f5d63c2dd35bdd633c9975974af9 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001From d97ac2bf2ed9c84ffd65ff10989068b202e09fdf Mon Sep 17 00:00:00 2001
2From: Lei Maohui <leimaohui@cn.fujitsu.com>
3Date: Mon, 3 Aug 2015 00:29:54 +0900
4Subject: [PATCH] CMakeLists.txt: 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 be544d1..14696e4 100644
13--- a/CMakeLists.txt
14+++ b/CMakeLists.txt
15@@ -11,13 +11,6 @@ set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules ${CMAKE_MODULE_P
16
17 find_package(CMPI)
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 option(WITH_PYTHON "Build experimental Python bindings" OFF)
27
28 add_subdirectory(cmake)
29--
301.8.4.2
31