From f9623968f078758eb8fb8ebad0b4595b15f8cb42 Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Thu, 6 Feb 2014 13:33:45 +0000 Subject: 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. (From OE-Core rev: 244e1d73ef58e92d73c098044c66bd784644b933) Signed-off-by: Paul Eggleton Signed-off-by: Richard Purdie --- meta/conf/bitbake.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/conf') 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 " -HOMEPAGE = "unknown" +HOMEPAGE = "" # Package dependencies and provides. -- cgit v1.2.3-54-g00ecf