diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2014-02-06 13:33:45 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-11 11:56:35 +0000 |
commit | 244e1d73ef58e92d73c098044c66bd784644b933 (patch) | |
tree | 83c7918657e66aa13b180cc7087b3e99c3e4a583 /meta/conf | |
parent | 85c8dd4170a88a5d7f3d9ca181e75720302727c5 (diff) | |
download | openembedded-core-244e1d73ef58e92d73c098044c66bd784644b933.tar.gz openembedded-core-244e1d73ef58e92d73c098044c66bd784644b933.tar.bz2 openembedded-core-244e1d73ef58e92d73c098044c66bd784644b933.zip |
conf/bitbake.conf: default HOMEPAGE to blank instead of unknown
The default value for HOMEPAGE of "unknown" has been in place since the
early OE-Classic days, but it doesn't really make sense - "unknown" is
not a valid URL and it just means we have to explicitly check for this
hardcoded string if we're displaying the value in some form of UI, such
as Toaster.
This has required some changes to the packaging classes as they
previously did not expect the value to be blank.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-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 57668e14f2..4fb6a1c460 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -241,7 +241,7 @@ This package contains documentation." LICENSE = "INVALID" MAINTAINER = "OE-Core Developers <openembedded-core@lists.openembedded.org>" -HOMEPAGE = "unknown" +HOMEPAGE = "" # Package dependencies and provides. |