summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-16 10:49:45 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-16 12:52:09 +0100
commit23f4288082a381eb3141244622b8de6ef0d6d01e (patch)
treef83de7fdbad00c8e106d1b2bbbdaa91dd266736e /meta/recipes-devtools
parent469d73a7339f8eadb9d9602665bd24eb534a2703 (diff)
downloadpoky-23f4288082a381eb3141244622b8de6ef0d6d01e.tar.gz
sgml-common: Fix re-execution of the compile task
The sed command run during do_compile isn't idempotent. This change fixes it so that it is and the compile task can be re-executed. [YOCTO #2194] (From OE-Core rev: c9dcfbd87d749baa0a4948738055193982aad26d) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r--meta/recipes-devtools/sgml-common/sgml-common_0.6.3.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/sgml-common/sgml-common_0.6.3.bb b/meta/recipes-devtools/sgml-common/sgml-common_0.6.3.bb
index 63e0acdba7..27b1a48ebd 100644
--- a/meta/recipes-devtools/sgml-common/sgml-common_0.6.3.bb
+++ b/meta/recipes-devtools/sgml-common/sgml-common_0.6.3.bb
@@ -26,7 +26,7 @@ inherit autotools
26 26
27do_compile_append() { 27do_compile_append() {
28 # install-catalog script contains hardcoded references to /etc/sgml 28 # install-catalog script contains hardcoded references to /etc/sgml
29 sed -i -e "s|/etc/sgml|${sysconfdir}/sgml|g" bin/install-catalog 29 sed -i -e 's|\([ "]\+\)/etc/sgml|\1${sysconfdir}/sgml|g' bin/install-catalog
30} 30}
31 31
32FILES_sgml-common_append = " ${datadir}/sgml" 32FILES_sgml-common_append = " ${datadir}/sgml"