diff options
author | Saul Wold <sgw@linux.intel.com> | 2015-01-23 06:08:34 -0800 |
---|---|---|
committer | Patrick Ohly <patrick.ohly@intel.com> | 2015-01-26 00:22:32 -0800 |
commit | dc0a5b78be343e107e7c28c75c54d2f8a66709b9 (patch) | |
tree | 260657bae900e7a5deee14d56d291097980719b7 | |
parent | 5f0b446f5ad2b8a625eeb956eec673f3f0b0ab4d (diff) | |
download | meta-tizen-dc0a5b78be343e107e7c28c75c54d2f8a66709b9.tar.gz meta-tizen-dc0a5b78be343e107e7c28c75c54d2f8a66709b9.tar.bz2 meta-tizen-dc0a5b78be343e107e7c28c75c54d2f8a66709b9.zip |
festival: fix install script
The install was hardwired for unknown_Linux, but there is some host
contamination, that determines it could be DebianGNULinux, so make the
install host agnostic.
Change-Id: Ib50e2c0ea0477f70ed53bab57d89f742497d42eb
Signed-off-by: Saul Wold <sgw@linux.intel.com>
-rw-r--r-- | meta-tizen-common-base/recipes-extended/festival/festival.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-tizen-common-base/recipes-extended/festival/festival.inc b/meta-tizen-common-base/recipes-extended/festival/festival.inc index 44f898dc..a5e3af34 100644 --- a/meta-tizen-common-base/recipes-extended/festival/festival.inc +++ b/meta-tizen-common-base/recipes-extended/festival/festival.inc @@ -186,7 +186,7 @@ do_install() { cp lib/*.ngrambin ${D}${prefix}/share/festival/ cp lib/*.gram ${D}${prefix}/share/festival/ cp lib/*.el ${D}${prefix}/share/festival/ - install -D lib/etc/unknown_Linux/audsp ${D}${prefix}/lib/festival/audsp + install -D lib/etc/*Linux/audsp ${D}${prefix}/lib/festival/audsp # install libs install -D src/lib/libFestival.so ${D}${prefix}/lib/libFestival.so # install includes |