1
0
mirror of https://github.com/git/git.git synced 2025-04-09 17:22:38 +00:00
Johannes Schindelin 8bef62049b Fix spurious compile error
From time to time, I would get this error:

[...]
sed: -e expression , char 41: Unterminated `s' command
make: *** [git-add--interactive] Error 1

Turns out that the function WriteMakefile() called in Makefile.PL
outputs the message "Writing perl.mak for Git" to stdout! Thus,
the output of "make -C perl -s --no-print-directory instlibdir"
would be prefixed by that message whenever Makefile.PL was newer
than perl.mak.

This is fixed by redirecting stdout to stderr in Makefile.PL.

Signed-off-by: Johannes E. Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-01-16 13:43:50 -08:00
..
2006-12-08 14:07:45 -08:00
2007-01-16 13:43:50 -08:00