diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-07-27 22:04:20 +0200 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2012-07-28 00:14:02 +0200 |
commit | ee9be06770223238c6a22430eb874754dd22dfb0 (patch) | |
tree | a9a59673c197e260512526bb07a2a451c42c8565 /perl/Makefile | |
parent | The Makefile.PL will now find .pm files itself. (diff) | |
download | git-ee9be06770223238c6a22430eb874754dd22dfb0.tar.xz git-ee9be06770223238c6a22430eb874754dd22dfb0.zip |
perl: detect new files in MakeMaker builds
While Makefile.PL now finds .pm files on its own, it does not
detect new files after it generates perl/perl.mak.
[ew: commit message, minor tweaks]
ref: http://mid.gmane.org/7vlii51xz4.fsf@alter.siamese.dyndns.org
Signed-off-by: Eric Wong <normalperson@yhbt.net>
Diffstat (limited to 'perl/Makefile')
-rw-r--r-- | perl/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/perl/Makefile b/perl/Makefile index 6ca7d472eb..7667c903d2 100644 --- a/perl/Makefile +++ b/perl/Makefile @@ -20,6 +20,9 @@ clean: $(RM) ppport.h $(RM) $(makfile) $(RM) $(makfile).old + $(RM) PM.stamp + +$(makfile): PM.stamp ifdef NO_PERL_MAKEMAKER instdir_SQ = $(subst ','\'',$(prefix)/lib) |