diff options
author | Michael Lauer <mickey@vanille-media.de> | 2005-04-01 14:14:01 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2005-04-01 14:14:01 +0000 |
commit | 0e27b063785ea7c7c8a0927741a2aa09db859456 (patch) | |
tree | de2ea0eb95d7af983b37ddc0801f86b3973ec0ef /packages | |
parent | 749247ebc88eee2142d3aa507f542866c3035ac2 (diff) |
zuc needs STL, so link with g++
BKrev: 424d57295PcOE7H6byCOIoSpI-_UBA
Diffstat (limited to 'packages')
-rw-r--r-- | packages/zuc/zuc_1.1.2ern.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/zuc/zuc_1.1.2ern.bb b/packages/zuc/zuc_1.1.2ern.bb index 673dc8229b..f80a19e13e 100644 --- a/packages/zuc/zuc_1.1.2ern.bb +++ b/packages/zuc/zuc_1.1.2ern.bb @@ -6,7 +6,7 @@ LICENSE = "GPL" APPTYPE = "binary" APPNAME = "zuc" APPDESKTOP = "${S}" -PR = "r2" +PR = "r3" SRC_URI = "http://www.linux-solutions.at/projects/zaurus/source/zuc_V${PV}.tar.gz \ http://nick.kreucher.net/zuc/zuc_units" @@ -14,6 +14,8 @@ S = "${WORKDIR}/zuc_V${PV}" inherit opie +export OE_QMAKE_LINK="${CXX}" + do_configure_append() { echo "#define VERSION \""${PV}"\"" > version.h echo "#define BUILDTIME \""`date +%Y%m%d%H%M`"\"" >> version.h @@ -23,5 +25,5 @@ do_install() { install -d ${D}${palmtopdir}/pics/ install -m 0644 *.png ${D}${palmtopdir}/pics/ install -d ${D}${palmtopdir}/etc/ - install -m 0644 ${WORKDIR}/nick.kreucher.net/zuc_units ${D}${palmtopdir}/etc/ + install -m 0644 ${WORKDIR}/zuc_units ${D}${palmtopdir}/etc/ } |