diff options
author | Milan P. Stanić <mps@arvanta.net> | 2020-05-08 21:23:13 +0200 |
---|---|---|
committer | Milan P. Stanić <mps@arvanta.net> | 2020-05-08 21:26:33 +0200 |
commit | edc193322116c48ad86129ed6dd4feead5321a3e (patch) | |
tree | 3026d5a8b9cbac4a4207485dd6d8dfa56484a1de /community/vboot-utils/0001-Remove-static-futility.patch | |
parent | 945d97906ebb95e7d333e11bc7abbae7497a0665 (diff) | |
download | aports-edc193322116c48ad86129ed6dd4feead5321a3e.tar.bz2 aports-edc193322116c48ad86129ed6dd4feead5321a3e.tar.xz |
community/vboot-utils: remove building static futility
add patch from Arch Linux Alarm to disable build of static futility
binary
Diffstat (limited to 'community/vboot-utils/0001-Remove-static-futility.patch')
-rw-r--r-- | community/vboot-utils/0001-Remove-static-futility.patch | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/community/vboot-utils/0001-Remove-static-futility.patch b/community/vboot-utils/0001-Remove-static-futility.patch new file mode 100644 index 0000000000..cae6b3a847 --- /dev/null +++ b/community/vboot-utils/0001-Remove-static-futility.patch @@ -0,0 +1,38 @@ +From 59166c9aacda115ea2feb2e3f6a01c23f5e91fc2 Mon Sep 17 00:00:00 2001 +From: Kevin Mihelich <kevin@archlinuxarm.org> +Date: Sun, 18 Mar 2018 14:46:01 -0600 +Subject: [PATCH] Remove static futility + +--- + Makefile | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/Makefile b/Makefile +index 1f3e7f664..75168b146 100644 +--- a/Makefile ++++ b/Makefile +@@ -1112,7 +1112,7 @@ signing_install: ${SIGNING_SCRIPTS} ${SIGNING_SCRIPTS_DEV} ${SIGNING_COMMON} + # new Firmware Utility + + .PHONY: futil +-futil: ${FUTIL_STATIC_BIN} ${FUTIL_BIN} ++futil: ${FUTIL_BIN} + + ${FUTIL_STATIC_BIN}: LDLIBS += ${CRYPTO_STATIC_LIBS} -lpthread + ${FUTIL_STATIC_BIN}: ${FUTIL_STATIC_OBJS} ${UTILLIB} +@@ -1125,10 +1125,10 @@ ${FUTIL_BIN}: ${FUTIL_OBJS} ${UTILLIB} ${FWLIB20} ${UTILBDB} + ${Q}${LD} -o $@ ${CFLAGS} ${LDFLAGS} $^ ${LDLIBS} + + .PHONY: futil_install +-futil_install: ${FUTIL_BIN} ${FUTIL_STATIC_BIN} ++futil_install: ${FUTIL_BIN} + @${PRINTF} " INSTALL futility\n" + ${Q}mkdir -p ${UB_DIR} +- ${Q}${INSTALL} -t ${UB_DIR} ${FUTIL_BIN} ${FUTIL_STATIC_BIN} ++ ${Q}${INSTALL} -t ${UB_DIR} ${FUTIL_BIN} + ${Q}for prog in ${FUTIL_SYMLINKS}; do \ + ln -sf futility "${UB_DIR}/$$prog"; done + +-- +2.16.2 + |