summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunfeng Dong <junfeng.dong@intel.com>2013-03-28 16:55:54 +0800
committerlifang <fangx.li@intel.com>2013-04-02 22:53:14 +0800
commitac50c3f2040d0108d9b01d574240f5c152a0c1a9 (patch)
treebfa1b718b7afc993248ec2e850e7d2cd61c482f7
parent6a0961f65cda25fdde4777ba92a5566b5fca2f10 (diff)
downloadsecure-storage-ac50c3f2040d0108d9b01d574240f5c152a0c1a9.tar.gz
secure-storage-ac50c3f2040d0108d9b01d574240f5c152a0c1a9.tar.bz2
secure-storage-ac50c3f2040d0108d9b01d574240f5c152a0c1a9.zip
Fix hardcoding library path for 64 bit compatibility.submit/tizen_2.1/20130424.232950accepted/tizen_2.1/20130425.0329482.1b_release
Change-Id: Ibd3903de18c9a4cd3a6e5dc7e094f555547bc4b6
-rw-r--r--CMakeLists.txt1
-rw-r--r--secure-storage.pc.in2
2 files changed, 1 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index fc6bd68..3fe2f1f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -3,7 +3,6 @@ PROJECT(secure-storage C)
SET(PREFIX ${CMAKE_INSTALL_PREFIX})
SET(EXEC_PREFIX "\${prefix}")
-SET(LIBDIR "\${prefix}/lib")
SET(INCLUDEDIR "\${prefix}/include")
SET(VERSION_MAJOR 1)
SET(VERSION ${VERSION_MAJOR}.0.0)
diff --git a/secure-storage.pc.in b/secure-storage.pc.in
index ae27633..7b23c7a 100644
--- a/secure-storage.pc.in
+++ b/secure-storage.pc.in
@@ -1,6 +1,6 @@
prefix=@PREFIX@
exec_prefix=@EXEC_PREFIX@
-libdir=@LIBDIR@
+libdir=@LIB_INSTALL_DIR@
includedir=@INCLUDEDIR@
Name: secure-storage