From d7f0af5aa90a9ef7714c842fb4cb762017820768 Mon Sep 17 00:00:00 2001 From: Anders Darander Date: Wed, 1 Mar 2017 18:20:01 +0100 Subject: scripts/lib/create_npm: handle Public Domain licenses Rewrite Public Domain as PD, as that's what the place holder in meta/files/common_licenses is called. Signed-off-by: Anders Darander Signed-off-by: Ross Burton --- scripts/lib/recipetool/create_npm.py | 1 + 1 file changed, 1 insertion(+) (limited to 'scripts/lib/recipetool') diff --git a/scripts/lib/recipetool/create_npm.py b/scripts/lib/recipetool/create_npm.py index 72ceb953e2..158029fa04 100644 --- a/scripts/lib/recipetool/create_npm.py +++ b/scripts/lib/recipetool/create_npm.py @@ -60,6 +60,7 @@ class NpmRecipeHandler(RecipeHandler): if license[-1] == ')': license = license[:-1] license = license.replace('MIT/X11', 'MIT') + license = license.replace('Public Domain', 'PD') license = license.replace('SEE LICENSE IN EULA', 'SEE-LICENSE-IN-EULA') return license -- cgit 1.2.3-korg