diff options
author | Koen Kooi <koen@openembedded.org> | 2008-08-20 08:37:08 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2008-08-20 08:37:08 +0000 |
commit | 05f8b5a2f985fdb1a18a25013392c893e4fa8de2 (patch) | |
tree | 88731b9f508eccbb71083f13fd16bc99d0d5940e | |
parent | 33bc0316c926255c879cd7415ca737ac6dc2764e (diff) |
gmyth-upnp: rename 'test' binary to something that doesn't conflict with coreutils or busybox
-rw-r--r-- | packages/mythtv/gmyth-upnp_0.7.0.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/packages/mythtv/gmyth-upnp_0.7.0.bb b/packages/mythtv/gmyth-upnp_0.7.0.bb index 3f20b3dd83..84657de93e 100644 --- a/packages/mythtv/gmyth-upnp_0.7.0.bb +++ b/packages/mythtv/gmyth-upnp_0.7.0.bb @@ -2,7 +2,7 @@ DESCRIPTION = "GMyth is a library to access MythTV backend services." LICENSE = "LGPLv2"" HOMEPAGE = "http://gmyth.sourceforge.net/wiki/index.php/Main_Page" -PR = "r2" +PR = "r3" DEPENDS = "glib-2.0 mysql gmyth libupnp" @@ -21,6 +21,10 @@ do_compile_append() { gmyth-upnp.pc } +do_install_append() { + mv ${D}/${bindir}/test ${D}/${bindir}/gmyth-upnp-test +} + do_stage() { autotools_stage_all } |