diff options
| author | Mingli Yu <mingli.yu@windriver.com> | 2021-04-15 16:33:20 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-04-30 14:37:25 +0100 |
| commit | 2ddb6be2233d3a9bbcf7a1c8bef65e72673aac1f (patch) | |
| tree | 4e3a2fd119516cb706eb1ae24d3d09a434d8eac4 | |
| parent | 80257e06f5bc3aff6b4a5cd71c167e7cc4ca99c9 (diff) | |
| download | poky-2ddb6be2233d3a9bbcf7a1c8bef65e72673aac1f.tar.gz | |
groff: not ship /usr/bin/grap2graph
grap2graph which converts a GRAP diagram into a cropped image fails
to run as below:
$ grap2graph
/usr/bin/grap2graph: line 89: convert: command not found
/usr/bin/grap2graph: warning: falling back to old '-crop 0x0' trim method
/usr/bin/grap2graph: line 104: convert: command not found
/usr/bin/grap2graph: line 103: grap: command not found
Considering we don't often need to convert a GRAP diagram into
a cropped image and the recipe ImageMagick which provides convert
command is in meta-oe layer, so don't ship the related files to
avoid the confusion about the above run time error.
(From OE-Core rev: b096417b9635c5a790616d20f0490bc15b9d7c0f)
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 251be7279a475ee18c0c53fe9795bb37bffc2b45)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-extended/groff/groff_1.22.4.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-extended/groff/groff_1.22.4.bb b/meta/recipes-extended/groff/groff_1.22.4.bb index 983cb9aea6..f0e9eb6a8a 100644 --- a/meta/recipes-extended/groff/groff_1.22.4.bb +++ b/meta/recipes-extended/groff/groff_1.22.4.bb | |||
| @@ -62,6 +62,10 @@ do_install_append() { | |||
| 62 | rm -rf ${D}${bindir}/glilypond | 62 | rm -rf ${D}${bindir}/glilypond |
| 63 | rm -rf ${D}${libdir}/groff/glilypond | 63 | rm -rf ${D}${libdir}/groff/glilypond |
| 64 | rm -rf ${D}${mandir}/man1/glilypond* | 64 | rm -rf ${D}${mandir}/man1/glilypond* |
| 65 | |||
| 66 | # not ship /usr/bin/grap2graph and its releated man files | ||
| 67 | rm -rf ${D}${bindir}/grap2graph | ||
| 68 | rm -rf ${D}${mandir}/man1/grap2graph* | ||
| 65 | } | 69 | } |
| 66 | 70 | ||
| 67 | do_install_append_class-native() { | 71 | do_install_append_class-native() { |
