diff options
author | Andreas Oberritter <obi@opendreambox.org> | 2012-03-08 03:51:10 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-08 11:54:33 -0800 |
commit | 516d2029b31b014de1c87d23dd86208a4480579c (patch) | |
tree | 36634262b0ae2bfb219b7e4cbee3803f4c91141f | |
parent | e303673f7f49495a892dbeda11d8295cecc54263 (diff) | |
download | openembedded-core-516d2029b31b014de1c87d23dd86208a4480579c.tar.gz openembedded-core-516d2029b31b014de1c87d23dd86208a4480579c.tar.bz2 openembedded-core-516d2029b31b014de1c87d23dd86208a4480579c.zip |
bitbake.conf: use empty SRC_URI by default
* Otherwise, recipes that only append to SRC_URI instead of
overwriting it will get the full path of the recipe written
into the Source: field of the package.
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/conf/bitbake.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index c8d9a31074..216da75574 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -577,7 +577,7 @@ SRCREV ??= "INVALID" AUTOREV = "${@bb.fetch2.get_autorev(d)}" SRCPV = "${@bb.fetch2.get_srcrev(d)}" -SRC_URI = "file://${FILE}" +SRC_URI = "" # Use pseudo as the fakeroot implementation PSEUDO_LOCALSTATEDIR ?= "${WORKDIR}/pseudo/" |