]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Makefile: Fix accidentally added dry-run markers
authorMaria Matejka <mq@ucw.cz>
Tue, 13 May 2025 13:47:06 +0000 (15:47 +0200)
committerMaria Matejka <mq@ucw.cz>
Tue, 13 May 2025 13:47:06 +0000 (15:47 +0200)
Makefile.in

index 616f80608a2fbe39f9d0bacad013a8ebda383d2b..96a5b6eba60afd911af5f416efe760416bcb9d14 100644 (file)
@@ -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)