From: Joey Hess Date: Tue, 9 Aug 2022 14:43:07 +0000 (-0400) Subject: don't force debuglocks flag on in Makefile X-Git-Tag: archive/raspbian/10.20250416-2+rpi1~1^2~69^2~279 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=11ca07fe6f243153796633f1ec96a60aa04cdacb;p=git-annex.git don't force debuglocks flag on in Makefile Reverts a change accidentially committed in 09edb07ac5982edc8fe2987a8b477405fe9f982b debuglocks is minimal cost, but there is some and this was an accidental change --- diff --git a/Makefile b/Makefile index 834a0a701f..73dffe3847 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,7 @@ install-home: tmp/configure-stamp: Build/TestConfig.hs Build/Configure.hs if [ "$(BUILDER)" = ./Setup ]; then $(GHC) --make Setup; fi if [ "$(BUILDER)" != stack ]; then \ - $(BUILDER) configure -f debuglocks $(BUILDERCOMMONOPTIONS) --ghc-options="$(shell Build/collect-ghc-options.sh)"; \ + $(BUILDER) configure $(BUILDERCOMMONOPTIONS) --ghc-options="$(shell Build/collect-ghc-options.sh)"; \ else \ $(BUILDER) setup $(BUILDERCOMMONOPTIONS); \ fi