diff options
author | Graeme Gregory <dp@xora.org.uk> | 2006-07-25 15:18:14 +0000 |
---|---|---|
committer | Graeme Gregory <dp@xora.org.uk> | 2006-07-25 15:18:14 +0000 |
commit | f96b6a7f2df09b514c456286bff28c1257e4ce5b (patch) | |
tree | c3a777d61ce16a1ec526a9dd17adf9d613f00d56 | |
parent | 41f016a94dc89771237cb13d0738ea135157ac9f (diff) |
fbpanel_4.3.bb : add extra linker flags to make plugins actually
pluginable.
-rw-r--r-- | packages/fbpanel/fbpanel_4.3.bb | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/packages/fbpanel/fbpanel_4.3.bb b/packages/fbpanel/fbpanel_4.3.bb index 3313e61629..3b959078ba 100644 --- a/packages/fbpanel/fbpanel_4.3.bb +++ b/packages/fbpanel/fbpanel_4.3.bb @@ -7,23 +7,25 @@ MAINTAINER = "Graeme Gregory <dp@xora.org.uk>" SRC_URI = "${SOURCEFORGE_MIRROR}/fbpanel/fbpanel-${PV}.tgz \ file://makefile.common.patch;patch=1 " -PR = "r0" +PR = "r1" + +LDFLAGS += "-Wl,--export-dynamic" do_configure () { ./configure --prefix=/usr --cpu=on } do_compile () { - oe_runmake CHATTY=1 STATIC_PLUGINS=1 + oe_runmake CHATTY=1 } do_install () { install -d ${D}${bindir} install -m 0755 fbpanel ${D}${bindir} install -d ${D}${datadir}/fbpanel/ - #install -d ${D}${datadir}/fbpanel/plugins - #install -m 644 plugins/*.so ${D}${datadir}/fbpanel/plugins - #install -m 644 systray/tray.so ${D}${datadir}/fbpanel/plugins + install -d ${D}${datadir}/fbpanel/plugins + install -m 644 plugins/*.so ${D}${datadir}/fbpanel/plugins + install -m 644 systray/tray.so ${D}${datadir}/fbpanel/plugins install -m 644 config/default ${D}${datadir}/fbpanel/default install -d ${D}${datadir}/fbpanel/images install -m 644 config/images/* ${D}${datadir}/fbpanel/images |