Changeset 8320

Show
Ignore:
Timestamp:
23/12/11 10:26:45 (5 months ago)
Author:
arb_build
Message:
  • skip test compilation of perl scripts when cross-compiling
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/Makefile

    r8318 r8320  
    15671567# ---------------------------------------- perl 
    15681568 
     1569ifeq ($(ARB_64),$(BUILDHOST_64)) 
     1570TEST_PERL_SCRIPTS=$(MAKE) -C PERL_SCRIPTS/test test 
     1571else 
     1572TEST_PERL_SCRIPTS=echo "skipping perl script compilation (when cross-compiling)" 
     1573endif 
     1574 
    15691575realperl: perltools 
    1570         @(( \ 
     1576        (( \ 
    15711577                echo "$(SEP) Make PERL2ARB" ; \ 
    15721578                time $(MAKE) -C PERL2ARB -r -f Makefile.main \ 
     
    15761582                        "cross_lflags=$(cross_lflags)" \ 
    15771583                        all && \ 
    1578                 $(MAKE) -C PERL_SCRIPTS/test test && \ 
     1584                $(TEST_PERL_SCRIPTS) && \ 
    15791585                echo "$(SEP) Make PERL2ARB [done]" ; \ 
    15801586        ) > PERL2ARB.log 2>&1 && (cat PERL2ARB.log;rm PERL2ARB.log)) || (cat PERL2ARB.log;rm PERL2ARB.log;false)