diff options
author | Saul Wold <sgw@linux.intel.com> | 2015-01-23 06:08:34 -0800 |
---|---|---|
committer | Patrick Ohly <patrick.ohly@intel.com> | 2015-02-04 06:48:37 -0800 |
commit | 4657c4afd0eab19ade83509b0e2f9724cf9ff2c0 (patch) | |
tree | 5fb5b2e024c2552257ea66d4bf53baf8541ec9cc | |
parent | 6c1ea79ee38e8ac9354c37ffec8e43c7a3359785 (diff) | |
download | tizen-distro-4657c4afd0eab19ade83509b0e2f9724cf9ff2c0.tar.gz tizen-distro-4657c4afd0eab19ade83509b0e2f9724cf9ff2c0.tar.bz2 tizen-distro-4657c4afd0eab19ade83509b0e2f9724cf9ff2c0.zip |
meta-tizen: 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
(From meta-tizen rev: dc0a5b78be343e107e7c28c75c54d2f8a66709b9)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
-rw-r--r-- | meta-tizen/meta-tizen-common-base/recipes-extended/festival/festival.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-tizen/meta-tizen-common-base/recipes-extended/festival/festival.inc b/meta-tizen/meta-tizen-common-base/recipes-extended/festival/festival.inc index 44f898dc59..a5e3af3431 100644 --- a/meta-tizen/meta-tizen-common-base/recipes-extended/festival/festival.inc +++ b/meta-tizen/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 |