diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/bin_package.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/bin_package.bbclass b/meta/classes/bin_package.bbclass index c3aca20443..f0407e1329 100644 --- a/meta/classes/bin_package.bbclass +++ b/meta/classes/bin_package.bbclass | |||
@@ -30,8 +30,9 @@ bin_package_do_install () { | |||
30 | bbfatal bin_package has nothing to install. Be sure the SRC_URI unpacks into S. | 30 | bbfatal bin_package has nothing to install. Be sure the SRC_URI unpacks into S. |
31 | fi | 31 | fi |
32 | cd ${S} | 32 | cd ${S} |
33 | install -d ${D}${base_prefix} | ||
33 | tar --no-same-owner --exclude='./patches' --exclude='./.pc' -cpf - . \ | 34 | tar --no-same-owner --exclude='./patches' --exclude='./.pc' -cpf - . \ |
34 | | tar --no-same-owner -xpf - -C ${D} | 35 | | tar --no-same-owner -xpf - -C ${D}${base_prefix} |
35 | } | 36 | } |
36 | 37 | ||
37 | FILES:${PN} = "/" | 38 | FILES:${PN} = "/" |