From cbf9a71ba4e3bb265957fb8e50b3134cb9653095 Mon Sep 17 00:00:00 2001 From: Ryan Kennedy Date: Mon, 12 Nov 2018 08:54:54 -0800 Subject: [PATCH] Add cleaning libconfig-1.7.2 to the `cleanall` target. Previously `cleanall` wasn't cleaning up the previous compilation of libconfig, leading to some situations where linking would mysteriously fail. --- deps/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/deps/Makefile b/deps/Makefile index e71b8cd57..4843b8cf3 100644 --- a/deps/Makefile +++ b/deps/Makefile @@ -170,5 +170,6 @@ cleanall: cd google-coredumper && rm -rf google-coredumper || true cd libev && rm -rf libev-4.24 || true cd libssl && rm -rf openssl-1.1.0h || true + cd libconfig && rm -rf libconfig-1.7.2 || true .PHONY: cleanall