From 477828b8da5524514b694b52fdd07327295fc7af Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 31 Mar 2020 00:50:59 -0400 Subject: work around make bug see https://savannah.gnu.org/bugs/?57962 --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d49a917..80a752c 100644 --- a/Makefile +++ b/Makefile @@ -98,8 +98,10 @@ RMDIR = @rmdir -p --ignore-fail-on-non-empty build : submodules $(BUILD) +# force shell instead of exec to work around +# https://savannah.gnu.org/bugs/?57962 since i have ~/.bin/git as a directory submodules : - @git submodule update --init --recursive + @:; git submodule update --init --recursive install :: all $(INSTALLED) @chmod 600 ssh/cao_key -- cgit v1.2.3-54-g00ecf