From 23a55b7225551df68a3e37c46b35b4b89f9457e9 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 3 Jan 2020 19:24:24 +0000 Subject: [PATCH] build: Don't always pass -d to goals. We can enable debugging on a case-by-case basis when necessary. --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 8cda36b..7bb2d1c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -20,7 +20,7 @@ # XXX Why can't this parse "all" instead of "all ()"? all clean install: src/goals - ./run src/goals -d "$@ ()" + ./run src/goals "$@ ()" # If src/goals doesn't exist then brute-force build it. Once we have # src/goals we can rebuild it and other parts of the project using -- 1.8.3.1