diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-30 23:18:28 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-31 23:47:27 +0000 |
commit | 1a1e70304932cce5ad194e0a7ebb495da7b24c2e (patch) | |
tree | 151531d0b93936bb2e0e58913f243ca5e7e436fd /meta/recipes-devtools | |
parent | 20816eb5398512652c971a37589a2ca28ffd3d68 (diff) | |
download | openembedded-core-1a1e70304932cce5ad194e0a7ebb495da7b24c2e.tar.gz openembedded-core-1a1e70304932cce5ad194e0a7ebb495da7b24c2e.tar.bz2 openembedded-core-1a1e70304932cce5ad194e0a7ebb495da7b24c2e.zip |
xmlto: Don't hardcode the path to tail
We don't need to hardcode a path to tail, follow the other tools examples and
don't specify a path since PATH is good enough for us.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/xmlto/xmlto_0.0.28.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb b/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb index aaaeb6eb2f..ce5d1e0c50 100644 --- a/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb +++ b/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb @@ -26,7 +26,7 @@ RDEPENDS_${PN}_append_class-target = " \ libxslt-bin \ coreutils \ " -CACHED_CONFIGUREVARS += "ac_cv_path_TAIL=${bindir}/tail" +CACHED_CONFIGUREVARS += "ac_cv_path_TAIL=tail" BBCLASSEXTEND = "native" |