summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlpha Bravo <aos@ungwana.de>2020-01-12 16:40:39 -0800
committerZac Medico <zmedico@gentoo.org>2020-01-12 17:07:44 -0800
commit5e25b4aa1598f53a0712d6229df67f5564687285 (patch)
treea1c122b83f8a8d6a767c9cf4d71ecbadfc4d4593 /sys-boot/vboot-utils/files
parentsci-astronomy/stellarium: stable 0.19.3 for ppc, bug #705294 (diff)
downloadgentoo-5e25b4aa1598f53a0712d6229df67f5564687285.tar.gz
gentoo-5e25b4aa1598f53a0712d6229df67f5564687285.tar.bz2
gentoo-5e25b4aa1598f53a0712d6229df67f5564687285.zip
sys-boot/vboot-utils: Bump to version 80_p20200108
Closes: https://bugs.gentoo.org/688396 Closes: https://bugs.gentoo.org/687820 Closes: https://bugs.gentoo.org/678594 Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Zac Medico <zmedico@gentoo.org>
Diffstat (limited to 'sys-boot/vboot-utils/files')
-rw-r--r--sys-boot/vboot-utils/files/vboot-utils-80-musl-fts.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/sys-boot/vboot-utils/files/vboot-utils-80-musl-fts.patch b/sys-boot/vboot-utils/files/vboot-utils-80-musl-fts.patch
new file mode 100644
index 000000000000..bd291f9138e1
--- /dev/null
+++ b/sys-boot/vboot-utils/files/vboot-utils-80-musl-fts.patch
@@ -0,0 +1,17 @@
+--- a/Makefile
++++ b/Makefile
+@@ -231,4 +231,7 @@
+ ifndef HAVE_MUSL
+ CFLAGS += -DHAVE_EXECINFO_H
++# Musl doesn't have fts.h so enable linking to the standalone lib.
++else
++ MUSL_LIBS := -lfts
+ endif
+
+@@ -1043,5 +1046,5 @@
+
+ # FUTIL_LIBS is shared by FUTIL_BIN and TEST_FUTIL_BINS.
+-FUTIL_LIBS = ${CRYPTO_LIBS} ${LIBZIP_LIBS}
++FUTIL_LIBS = ${CRYPTO_LIBS} ${LIBZIP_LIBS} ${MUSL_LIBS}
+
+ ${FUTIL_BIN}: LDLIBS += ${FUTIL_LIBS}