diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-04-19 15:11:01 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-26 10:05:11 +0100 |
commit | b4d6cedcc3cf8cbd8ba317c9ff13cd70a1d80361 (patch) | |
tree | 23ce69aea1c8dd6df0fd702944ea6006bc50ea8d /meta/recipes-devtools/quilt/quilt-native.inc | |
parent | 67fbab3dd56d4278cbf1721d64d4bbc940bbd522 (diff) | |
download | poky-b4d6cedcc3cf8cbd8ba317c9ff13cd70a1d80361.tar.gz |
quilt: move empty quiltrc to native sysconfdir
patch.bbclass orignally pointed at /usr/bin/quiltrc for an empty
version to ensure that no user setting were picked up, change this
to /etc/quiltrc in the Native sysroot since we now have a native
sysconfdir.
Make sure that the quiltrc is actually installed in the Native
sysconfdir, not the target, so fix this after the recipe split.
(From OE-Core rev: 1af73900cea82e63fb0f94e6f057144f723146ec)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/quilt/quilt-native.inc')
-rw-r--r-- | meta/recipes-devtools/quilt/quilt-native.inc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/recipes-devtools/quilt/quilt-native.inc b/meta/recipes-devtools/quilt/quilt-native.inc index 7efea0213d..9345d88273 100644 --- a/meta/recipes-devtools/quilt/quilt-native.inc +++ b/meta/recipes-devtools/quilt/quilt-native.inc | |||
@@ -11,3 +11,9 @@ EXTRA_OECONF = "--disable-nls" | |||
11 | do_configure () { | 11 | do_configure () { |
12 | oe_runconf | 12 | oe_runconf |
13 | } | 13 | } |
14 | |||
15 | do_install_append () { | ||
16 | # Dummy quiltrc file for patch.bbclass | ||
17 | install -d ${D}${sysconfdir}/ | ||
18 | touch ${D}${sysconfdir}/quiltrc | ||
19 | } | ||