diff options
author | Andreas Oberritter <obi@opendreambox.org> | 2016-11-30 22:50:45 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-31 14:40:16 +0000 |
commit | 93996a327d4c8652a16292824a06a163b13dc228 (patch) | |
tree | ee6ae5ec41e868691a4cc854f326061b8e6509a6 /meta/recipes-devtools | |
parent | 27efae1e0ba8fc6b08117b31c4cb35638afc37e4 (diff) | |
download | openembedded-core-93996a327d4c8652a16292824a06a163b13dc228.tar.gz openembedded-core-93996a327d4c8652a16292824a06a163b13dc228.tar.bz2 openembedded-core-93996a327d4c8652a16292824a06a163b13dc228.zip |
gptfdisk: fix support for 'large' drives
Make's switch '-e' replaced important compiler flags from the
project's Makefile, i.e. -D_FILE_OFFSET_BITS=64.
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/fdisk/gptfdisk_1.0.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/fdisk/gptfdisk_1.0.1.bb b/meta/recipes-devtools/fdisk/gptfdisk_1.0.1.bb index 8fab28f338..d62a903a70 100644 --- a/meta/recipes-devtools/fdisk/gptfdisk_1.0.1.bb +++ b/meta/recipes-devtools/fdisk/gptfdisk_1.0.1.bb @@ -13,7 +13,7 @@ SRC_URI[sha256sum] = "864c8aee2efdda50346804d7e6230407d5f42a8ae754df70404dd8b2fd UPSTREAM_CHECK_URI = "http://sourceforge.net/projects/gptfdisk/files/gptfdisk/" UPSTREAM_CHECK_REGEX = "/gptfdisk/(?P<pver>(\d+[\.\-_]*)+)/" -EXTRA_OEMAKE = "-e MAKEFLAGS=" +EXTRA_OEMAKE = "'CC=${CC}' 'CXX=${CXX}'" do_install() { install -d ${D}${sbindir} |