Code

Fix perl/ build.
authorJunio C Hamano <junkio@cox.net>
Fri, 8 Dec 2006 22:07:45 +0000 (14:07 -0800)
committerJunio C Hamano <junkio@cox.net>
Fri, 8 Dec 2006 22:07:45 +0000 (14:07 -0800)
An earlier commit f848718a broke the build in perl/ directory by
allowing the Makefile.PL to overwrite the now-tracked Makefile.
Fix this by forcing Makefile.PL to produce its output in
perl.mak as the broken commit originally intended.

Signed-off-by: Junio C Hamano <junkio@cox.net>
perl/Makefile
perl/Makefile.PL

index bd483b099760719bcbd3ae67c2321b675ad26881..099beda873e91ebacf1068531fe194fa041ed9d6 100644 (file)
@@ -29,7 +29,7 @@ $(makfile): ../GIT-CFLAGS Makefile
        echo '  echo $(instdir_SQ)' >> $@
 else
 $(makfile): Makefile.PL ../GIT-CFLAGS
-       '$(PERL_PATH_SQ)' $< FIRST_MAKEFILE='$@' PREFIX='$(prefix_SQ)'
+       '$(PERL_PATH_SQ)' $< PREFIX='$(prefix_SQ)'
 endif
 
 # this is just added comfort for calling make directly in perl dir
index de73235e4c3142381c4ea01597e18b14cd65bc02..41687757a7fdd9c09bd320b92ed7f089af00a403 100644 (file)
@@ -24,5 +24,6 @@ WriteMakefile(
        NAME            => 'Git',
        VERSION_FROM    => 'Git.pm',
        PM              => \%pm,
+       MAKEFILE        => 'perl.mak',
        %extra
 );