diff options
Diffstat (limited to 'recipes-enea/bitcalc')
-rw-r--r-- | recipes-enea/bitcalc/bitcalc_1.0.bb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/recipes-enea/bitcalc/bitcalc_1.0.bb b/recipes-enea/bitcalc/bitcalc_1.0.bb index f5a0aad..d822729 100644 --- a/recipes-enea/bitcalc/bitcalc_1.0.bb +++ b/recipes-enea/bitcalc/bitcalc_1.0.bb | |||
@@ -19,10 +19,14 @@ SRC_URI = "git://github.com/OpenEneaLinux/rt-tools.git;branch=master \ | |||
19 | DEPENDS_remove_aarch64 = "gcc-sanitizers" | 19 | DEPENDS_remove_aarch64 = "gcc-sanitizers" |
20 | SRC_URI_append_aarch64 = "file://0001-bitcalc-disable-gcc-address-sanitizer.patch" | 20 | SRC_URI_append_aarch64 = "file://0001-bitcalc-disable-gcc-address-sanitizer.patch" |
21 | 21 | ||
22 | SRCREV = "9d4d1ce26b58ada516466c30e53c75c2961d6f0a" | 22 | SRCREV = "a96dcc47f327a990afaf75911183b1631367609c" |
23 | 23 | ||
24 | S = "${WORKDIR}/git" | 24 | S = "${WORKDIR}/git" |
25 | 25 | ||
26 | EXTRA_OEMAKE += "'DESTDIR=${D}/usr/bin'" | 26 | EXTRA_OEMAKE += "'DESTDIR=${D}${bindir}'" |
27 | 27 | ||
28 | inherit pkgconfig cmake | 28 | inherit pkgconfig cmake |
29 | |||
30 | do_install() { | ||
31 | install -m 0755 -D ${B}/bitcalc/src/bitcalc ${D}${bindir}/bitcalc | ||
32 | } | ||