Makefile: fix typo and wrong path in external/Makefile to properly remove objects with "make clean"

Signed-off-by: YOSHIDA Masanori <masanori.yoshida@gmail.com>
Changelog-None
This commit is contained in:
YOSHIDA Masanori 2020-10-26 01:08:07 +09:00 committed by Rusty Russell
parent 54729376d7
commit b7ab8866b8
1 changed files with 1 additions and 1 deletions

2
external/Makefile vendored
View File

@ -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