From: Holger Freyther Date: Sat, 5 Jun 2004 23:18:59 +0000 (+0000) Subject: Fix installation of Qt/X11 3.3.2 X-Git-Tag: Release-2010-05/1~18845 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d6915ef9b858b6a9bad0efd94826522b9e3e4b7a;p=openembedded.git Fix installation of Qt/X11 3.3.2 -A '$' was missing in front of {libdir} BKrev: 40c254e3wkMd7WFZ_bJ-Di4sy73T-g --- diff --git a/qt/qt-x11-free_3.3.2.oe b/qt/qt-x11-free_3.3.2.oe index 90d062890f..d34ac39403 100644 --- a/qt/qt-x11-free_3.3.2.oe +++ b/qt/qt-x11-free_3.3.2.oe @@ -44,5 +44,5 @@ do_stage() { do_install() { install -d ${D}/${libdir}/ - oe_soinstall lib/libqt.so.${PV} ${D}/{libdir}/ + oe_soinstall lib/libqt.so.${PV} ${D}/${libdir}/ }