| Submitter | Gary Thomas |
|---|---|
| Date | March 29, 2012, 12:31 p.m. |
| Message ID | <4F74562F.1040306@mlbassoc.com> |
| Download | mbox | patch |
| Permalink | /patch/24867/ |
| State | New, archived |
| Headers | show |
Comments
Patch
diff --git a/packages/python/python-twisted_12.0.0.bb b/packages/python/python-twisted_12.0.0.bb index a642656..536296f 100644 --- a/packages/python/python-twisted_12.0.0.bb +++ b/packages/python/python-twisted_12.0.0.bb @@ -18,7 +18,8 @@ inherit setuptools do_install_append() { # remove some useless files before packaging - find ${D} -name "*.bat" -o -name "*.c" -o -name "*.h" -exec rm {} \; + find ${D} -name "*.bat" -o -name "*.c" -o -name "*.h" -print -exec rm \{} \; + find ${D} -name "*.bat" -o -name "*.c" -o -name "*.h" | xargs -t rm } The first command (which I think needs the \{} instead of {} - at least that's how