summaryrefslogtreecommitdiff
path: root/content/technical/how-to-build-telepathy-qt4-with-alternate-prefix.md
diff options
context:
space:
mode:
authorStef Walter <stefw@redhat.com>2014-11-04 11:31:31 +0100
committerStef Walter <stefw@redhat.com>2014-11-04 13:55:32 +0100
commit0968f903fe66f9bb8957b8d01e35f3743c74404b (patch)
tree5928fbcdf458575c77cbfe8edac12afc7d71b768 /content/technical/how-to-build-telepathy-qt4-with-alternate-prefix.md
parent054fed351b16d608f6ae4b8fd3cf3a38434117bd (diff)
Brought old blog over
Diffstat (limited to 'content/technical/how-to-build-telepathy-qt4-with-alternate-prefix.md')
-rw-r--r--content/technical/how-to-build-telepathy-qt4-with-alternate-prefix.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/content/technical/how-to-build-telepathy-qt4-with-alternate-prefix.md b/content/technical/how-to-build-telepathy-qt4-with-alternate-prefix.md
new file mode 100644
index 0000000..09d1cd2
--- /dev/null
+++ b/content/technical/how-to-build-telepathy-qt4-with-alternate-prefix.md
@@ -0,0 +1,19 @@
+Title: How to build telepathy-qt4 with alternate prefix
+Date: 2011-08-11
+Tags: technical
+Slug: how-to-build-telepathy-qt4-with
+
+Just figured out how to build telepathy-qt4 in an alternate prefix and
+also look for dependencies in that prefix as well. Since I don't use
+cmake much these days, figured I'd post this so I could go and look back
+at it later. Depends on [this fix][].
+
+ :::sh
+ PKG_CONFIG_PATH=~/the/prefix cmake -DCMAKE_INSTALL_PREFIX=~/the/prefix  .make install
+
+Or if on a 64-bit system:
+
+ :::sh
+ PKG_CONFIG_PATH=~/the/prefix cmake -DCMAKE_INSTALL_PREFIX=/data/build/telepathy -DLIB_SUFFIX=64 .make install
+
+ [this fix]: https://bugs.freedesktop.org/show_bug.cgi?id=40008