Subversion Repositories DevTools

Rev

Rev 7547 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7547 Rev 7552
Line 976... Line 976...
976
#   Place the msys/usr/bin directory AFTER the $GBE_BIN so that we will
976
#   Place the msys/usr/bin directory AFTER the $GBE_BIN so that we will
977
#   pickup the original executables before attempting to find the msys
977
#   pickup the original executables before attempting to find the msys
978
#   ones. Msys was initially used as it provides a full implementation of 
978
#   ones. Msys was initially used as it provides a full implementation of 
979
#   tar.
979
#   tar.
980
#
980
#
981
PathPrepend ($GBE_BIN . '/msys/bin') unless $GBE_UNIX;
981
PathPrepend ($GBE_BIN . '/msys/usr/bin') unless $GBE_UNIX;
982
PathPrepend ($GBE_BIN);
982
PathPrepend ($GBE_BIN);
983
 
983
 
984
################################################################################
984
################################################################################
985
# Under Windows - ensure that cmd.exe (or equivelent) is in the PATH
985
# Under Windows - ensure that cmd.exe (or equivelent) is in the PATH
986
# Cygwin may remove it
986
# Cygwin may remove it
Line 1773... Line 1773...
1773
sub ebin
1773
sub ebin
1774
{
1774
{
1775
    my $command = shift;
1775
    my $command = shift;
1776
    my $cmd;
1776
    my $cmd;
1777
    my @ebin_path = ( "$GBE_BIN" );
1777
    my @ebin_path = ( "$GBE_BIN" );
1778
    push (@ebin_path, $GBE_BIN . '/msys/bin') unless $GBE_UNIX;
1778
    push (@ebin_path, $GBE_BIN . '/msys/usr/bin') unless $GBE_UNIX;
1779
 
1779
 
1780
 
1780
 
1781
    if ( $command )
1781
    if ( $command )
1782
    {
1782
    {
1783
        #
1783
        #