From b7ab8866b86e31338156e4f2ca66fe4605da2cc3 Mon Sep 17 00:00:00 2001 From: YOSHIDA Masanori Date: Mon, 26 Oct 2020 01:08:07 +0900 Subject: [PATCH] Makefile: fix typo and wrong path in external/Makefile to properly remove objects with "make clean" Signed-off-by: YOSHIDA Masanori Changelog-None --- external/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/Makefile b/external/Makefile index 63478d776..b6326ada4 100644 --- a/external/Makefile +++ b/external/Makefile @@ -103,7 +103,7 @@ external-clean: if [ -f ${TARGET_DIR}/libsodium-build/Makefile ]; then make -C ${TARGET_DIR}/libsodium-build clean; fi if [ -f ${TARGET_DIR}/libwally-core-build/Makefile ]; then make -C ${TARGET_DIR}/libwally-core-build clean; fi if [ -f ${TARGET_DIR}/libwally-core-build/src/Makefile ]; then make -C ${TARGET_DIR}/libwally-core-build/src clean; fi - if [ -f ${TARGET_DIR}/libacktrace-build/Makefile ]; then make -C ${TARGET_DIR}/libbacktrace-build/src clean; fi + if [ -f ${TARGET_DIR}/libbacktrace-build/Makefile ]; then make -C ${TARGET_DIR}/libbacktrace-build clean; fi external-distclean: make -C external/libsodium distclean || true