Skip to content

Commit 7c37a5d

Browse files
peffgitster
authored andcommitted
Makefile: silence perl/PM.stamp recipe
Every time we run "make", we update perl/PM.stamp, which contains a list of all of the perl module files (if it's updated, we need to rebuild perl/perl.mak, since the Makefile will not otherwise know about the new files). This means that every time "make" is run, we see: GEN perl/PM.stamp in the output, even though it is not likely to have changed. Let's make this recipe completely silent, as we do for other auto-generated dependency files (e.g., GIT-CFLAGS). Signed-off-by: Jeff King <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent a2d25ef commit 7c37a5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1685,7 +1685,7 @@ $(SCRIPT_PERL_GEN): perl/perl.mak
16851685
perl/perl.mak: perl/PM.stamp
16861686

16871687
perl/PM.stamp: FORCE
1688-
$(QUIET_GEN)$(FIND) perl -type f -name '*.pm' | sort >$@+ && \
1688+
@$(FIND) perl -type f -name '*.pm' | sort >$@+ && \
16891689
{ cmp $@+ $@ >/dev/null 2>/dev/null || mv $@+ $@; } && \
16901690
$(RM) $@+
16911691

0 commit comments

Comments
 (0)