diff options
author | Chris Larson <clarson@kergoth.com> | 2004-05-10 08:38:15 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-05-10 08:38:15 +0000 |
commit | 9aa6d7445a4650331fa820f971f9140c1d785aeb (patch) | |
tree | b074f8260d387937967675950038dd95d9d7d752 /libvncserver/libvncserver_0.6.oe | |
parent | 9fcbda0bf62f0f1bf5259e0ac04bf051a9246402 (diff) |
Fixup some more usage of the oe_libinstall script.
BKrev: 409f3f772sSA3_XlhzxSt0billeAFw
Diffstat (limited to 'libvncserver/libvncserver_0.6.oe')
-rw-r--r-- | libvncserver/libvncserver_0.6.oe | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/libvncserver/libvncserver_0.6.oe b/libvncserver/libvncserver_0.6.oe index abc3e9b15b..390efbaa5c 100644 --- a/libvncserver/libvncserver_0.6.oe +++ b/libvncserver/libvncserver_0.6.oe @@ -16,18 +16,19 @@ S = "${WORKDIR}/LibVNCServer-${PV}" inherit autotools do_stage () { - install -d ${STAGING_INCDIR}/rfb - install -m 0644 rfb/rfb.h rfb/rfbproto.h rfb/rfbint.h rfb/rfbconfig.h \ + install -d ${STAGING_INCDIR}/rfb + install -m 0644 rfb/rfb.h rfb/rfbproto.h rfb/rfbint.h rfb/rfbconfig.h \ rfb/rfbclient.h rfb/rfbregion.h rfb/keysym.h \ rfb/default8x16.h ${STAGING_INCDIR}/rfb - - install -m 0644 libvncserver.a libvncclient/libvncclient.a ${STAGING_LIBDIR} + + oe_libinstall -a -C libvncclient libvncclient ${STAGING_LIBDIR}/ + oe_libinstall -a libvncserver ${STAGING_LIBDIR}/ } do_install () { - install -d ${D}/${bindir} - install -m 0755 examples/storepasswd ${D}/${bindir} - install -d ${D}/${datadir}fbvncserver/classes - install -m 0644 classes/index.vnc ${D}/${datadir}fbvncserver/classes/ - install -m 0644 classes/VncViewer.jar ${D}/${datadir}fbvncserver/classes/ + install -d ${D}/${bindir} + install -m 0755 examples/storepasswd ${D}/${bindir} + install -d ${D}/${datadir}fbvncserver/classes + install -m 0644 classes/index.vnc ${D}/${datadir}fbvncserver/classes/ + install -m 0644 classes/VncViewer.jar ${D}/${datadir}fbvncserver/classes/ } |