Subversion Repositories DevTools

Rev

Rev 331 | Rev 341 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 331 Rev 333
Line 1382... Line 1382...
1382
    #
1382
    #
1383
    #   Jats/make does not handle file systems with spaces in the path names
1383
    #   Jats/make does not handle file systems with spaces in the path names
1384
    #
1384
    #
1385
    Error('$CWD path cannot contain spaces') if ( $CWD =~ m/\s/ );
1385
    Error('$CWD path cannot contain spaces') if ( $CWD =~ m/\s/ );
1386
 
1386
 
1387
    $RESULT = System ($GBE_PERL, $build_file, $CWD, @_ );
1387
    $RESULT = System ($GBE_PERL, $build_file, $CWD, "$GBE_TOOLS/buildlib.pl", @_ );
1388
 
1388
 
1389
    Message ("=== Build $name NOT complete ===") if     ( $RESULT  );
1389
    Message ("=== Build $name NOT complete ===") if     ( $RESULT  );
1390
    Message ("=== Build $name complete ===")     unless ( $RESULT );
1390
    Message ("=== Build $name complete ===")     unless ( $RESULT );
1391
    return $RESULT
1391
    return $RESULT
1392
}
1392
}
Line 1939... Line 1939...
1939
    etool ( 'jmake.pl', 'clobber' )
1939
    etool ( 'jmake.pl', 'clobber' )
1940
        if ( -f "Makefile.gbe" );
1940
        if ( -f "Makefile.gbe" );
1941
 
1941
 
1942
    if ( -f $build_file )
1942
    if ( -f $build_file )
1943
    {
1943
    {
1944
        System ( $GBE_PERL, $build_file, $CWD, 'clobber' );
1944
        System ( $GBE_PERL, $build_file, $CWD, "$GBE_TOOLS/buildlib.pl", 'clobber' );
1945
    }
1945
    }
1946
    else
1946
    else
1947
    {
1947
    {
1948
        Error ("Cannot clobber. No buildfile found");
1948
        Error ("Cannot clobber. No buildfile found");
1949
    }
1949
    }