summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2012-08-16 15:29:26 +0100
committerSam Thursfield <sam.thursfield@codethink.co.uk>2012-08-16 15:29:26 +0100
commitfdcbdbdcf781268bda476b5cb2a7a21845a7d11c (patch)
treeaf561cd1465552c9ad46d4155b0fa21f4e1d7623
parent8770b452feaf14a3025d1aeff42df30a55cb8e86 (diff)
downloadpango-fdcbdbdcf781268bda476b5cb2a7a21845a7d11c.tar.gz
pango.morph: Set LD_LIBRARY_PATH when running pango-querymodules
Same fix as needed for gdk-pixbuf; the module cache was actually empty because pango-querymodules needs a library only available inside DESTDIR at the time we want to run it.
-rw-r--r--pango.morph2
1 files changed, 1 insertions, 1 deletions
diff --git a/pango.morph b/pango.morph
index 936631e4..ff1acfde 100644
--- a/pango.morph
+++ b/pango.morph
@@ -5,6 +5,6 @@
"install-commands": [
"make DESTDIR=\"$DESTDIR\" install",
"mkdir -p \"$DESTDIR/$PREFIX/etc/pango/\"",
- "\"$DESTDIR/$PREFIX/bin/pango-querymodules\" \"$DESTDIR/$PREFIX/lib/pango/1.6.0/modules/\"*.la | sed -e \"s,$DESTDIR/$PREFIX,$PREFIX,\" > \"$DESTDIR/$PREFIX/etc/pango/pango.modules\""
+ "LD_LIBRARY_PATH=\"$DESTDIR/$PREFIX/lib/\" \"$DESTDIR/$PREFIX/bin/pango-querymodules\" \"$DESTDIR/$PREFIX/lib/pango/1.6.0/modules/\"*.la | sed -e \"s,$DESTDIR/$PREFIX,$PREFIX,\" > \"$DESTDIR/$PREFIX/etc/pango/pango.modules\""
]
}