From: Maria Matejka Date: Tue, 13 May 2025 13:47:06 +0000 (+0200) Subject: Makefile: Fix accidentally added dry-run markers X-Git-Tag: v3.0.3~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=11be1fe662b47a44dec32504c6d3684644be163d;p=thirdparty%2Fbird.git Makefile: Fix accidentally added dry-run markers --- 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)