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-24 15:51:35 +0100 |
commit | 1af73900cea82e63fb0f94e6f057144f723146ec (patch) | |
tree | b812b035f8348ce18f010360cb2125bb9199786a /meta/classes | |
parent | aff48c514174ba5fa3bb1e5df5293376b567da09 (diff) | |
download | openembedded-core-1af73900cea82e63fb0f94e6f057144f723146ec.tar.gz openembedded-core-1af73900cea82e63fb0f94e6f057144f723146ec.tar.bz2 openembedded-core-1af73900cea82e63fb0f94e6f057144f723146ec.tar.xz openembedded-core-1af73900cea82e63fb0f94e6f057144f723146ec.zip |
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.
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/patch.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/patch.bbclass b/meta/classes/patch.bbclass index 31db9e372..3c4d99783 100644 --- a/meta/classes/patch.bbclass +++ b/meta/classes/patch.bbclass @@ -1,7 +1,7 @@ # Copyright (C) 2006 OpenedHand LTD # Point to an empty file so any user's custom settings don't break things -QUILTRCFILE ?= "${STAGING_BINDIR_NATIVE}/quiltrc" +QUILTRCFILE ?= "${STAGING_ETCDIR_NATIVE}/quiltrc" PATCHDEPENDENCY = "${PATCHTOOL}-native:do_populate_sysroot" |