diff options
author | Oyvind Repvik <nail@nslu2-linux.org> | 2007-04-02 14:27:10 +0000 |
---|---|---|
committer | Oyvind Repvik <nail@nslu2-linux.org> | 2007-04-02 14:27:10 +0000 |
commit | c49aefc1a3e67251c0e75209d8760f289b25bc9c (patch) | |
tree | e1c700ba6a869246904c282421a03fccfda17fc3 /packages/redboot-utils/fconfig_20060419.bb | |
parent | 0ec3b2d139c78ea226925553dd5b37a4649f4696 (diff) |
fconfig: Actually install binary, so it gets packaged
Diffstat (limited to 'packages/redboot-utils/fconfig_20060419.bb')
-rw-r--r-- | packages/redboot-utils/fconfig_20060419.bb | 9 |
1 files changed, 7 insertions, 2 deletions
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} +} |