diff options
author | Arnout Vandecappelle <arnout@mind.be> | 2012-11-13 02:00:46 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-11-14 22:43:45 +0100 |
commit | f876cb598b78d31ca480e0f0ad0eb61d4e6c146f (patch) | |
tree | 745291e424b48e969f9639400f1e434ff7048f2f | |
parent | 7a5f9293a1195020def8516bfafe8e69bab51a00 (diff) | |
download | buildroot-novena-f876cb598b78d31ca480e0f0ad0eb61d4e6c146f.tar.gz buildroot-novena-f876cb598b78d31ca480e0f0ad0eb61d4e6c146f.zip |
legal-info: quote csv file contents, so commas can be used
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/pkg-utils.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/pkg-utils.mk b/package/pkg-utils.mk index 293bf4f12..835c588af 100644 --- a/package/pkg-utils.mk +++ b/package/pkg-utils.mk @@ -94,7 +94,7 @@ legal-warning-pkg=echo "WARNING: $(1): $(2)" >>$(LEGAL_WARNINGS) define legal-warning-pkg-savednothing # pkg, {local|override} $(call legal-warning-pkg,$(1),sources and license files not saved ($(2) packages not handled)) endef -legal-manifest=echo "$(1),$(2),$(3),$(4),$(5)" >>$(LEGAL_MANIFEST_CSV) +legal-manifest=echo '"$(1)","$(2)","$(3)","$(4)","$(5)"' >>$(LEGAL_MANIFEST_CSV) define legal-license-header echo -e "$(LEGAL_INFO_SEPARATOR)\n\t$(1):" \ "$(2)\n$(LEGAL_INFO_SEPARATOR)\n\n" >>$(LEGAL_LICENSES_TXT) |