From 11be1fe662b47a44dec32504c6d3684644be163d Mon Sep 17 00:00:00 2001 From: Maria Matejka Date: Tue, 13 May 2025 15:47:06 +0200 Subject: [PATCH] Makefile: Fix accidentally added dry-run markers --- Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 616f80608..96a5b6eba 100644 --- a/Makefile.in +++ b/Makefile.in @@ -160,7 +160,7 @@ $(objdir)/.dir-stamp: Makefile $(client) $(daemon): $(E)echo LD $(LDFLAGS) -o $@ $^ $(LIBS) - +$(Q)$(CC) $(LDFLAGS) -o $@ $^ $(LIBS) + $(Q)$(CC) $(LDFLAGS) -o $@ $^ $(LIBS) $(objdir)/sysdep/paths.h: Makefile $(E)echo GEN $@ @@ -175,7 +175,7 @@ tests_targets_ok = $(addsuffix .ok,$(tests_targets)) $(tests_targets): %: %.o $(tests_objs) | prepare $(E)echo LD $(LDFLAGS) -o $@ $< "..." $(LIBS) - +$(Q)$(CC) $(LDFLAGS) -o $@ $^ $(LIBS) + $(Q)$(CC) $(LDFLAGS) -o $@ $^ $(LIBS) # Hack to avoid problems with tests linking everything $(tests_targets): LIBS += $(DAEMON_LIBS) -- 2.47.2