# HG changeset patch # User Han-Wen Nienhuys # Date 1178775147 10800 # Node ID 6edbd1d19cf77bd174baca318f3bc5c285562ba8 # Parent e65e6000f5eb0e38e96759cc91c84ee211d3f14f use makeflags diff -r e65e6000f5eb -r 6edbd1d19cf7 gub/specs/git.py --- a/gub/specs/git.py Thu May 10 02:29:04 2007 -0300 +++ b/gub/specs/git.py Thu May 10 02:32:27 2007 -0300 @@ -74,13 +74,8 @@ ], '%(builddir)s/Makefile') - def compile_command (self): - return (targetpackage.TargetBuildSpec.compile_command (self) - + ' uname_S=MINGW' - + ' SHELL_PATH=/bin/sh') - - def install_command (self): - return (targetpackage.TargetBuildSpec.install_command (self) - + ' uname_S=MINGW' - + ' SHELL_PATH=/bin/sh') - + def makeflags (self): + return (' uname_S=MINGW' + + ' SHELL_PATH=/bin/sh' + + ' PERL_PATH=/bin/perl') +