From: Oyvind Repvik Date: Mon, 2 Apr 2007 14:27:10 +0000 (+0000) Subject: fconfig: Actually install binary, so it gets packaged X-Git-Tag: Release-2010-05/1~8868^2~854 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c49aefc1a3e67251c0e75209d8760f289b25bc9c;p=openembedded.git fconfig: Actually install binary, so it gets packaged --- diff --git a/packages/redboot-utils/fconfig_20060419.bb b/packages/redboot-utils/fconfig_20060419.bb index d34d053aee..561718f9b2 100644 --- a/packages/redboot-utils/fconfig_20060419.bb +++ b/packages/redboot-utils/fconfig_20060419.bb @@ -1,9 +1,14 @@ DESCRIPTION = "Tool to edit the Redboot config from userspace" -PR = "r0" +PR = "r1" SRC_URI = "http://andrzejekiert.ovh.org/software/fconfig/fconfig-20060419.tar.gz" S = ${WORKDIR}/fconfig do_compile() { ${MAKE} -} \ No newline at end of file +} + +do_install() { + install -d ${D}/${sbindir} + install -m 755 ${S}/fconfig ${D}/${sbindir} +}