Changeset 2581

Show
Ignore:
Timestamp:
05/21/07 15:04:36 (2 years ago)
Author:
tg
Message:

catch mis-behaving packages like dropbear that try to call autotools,
thusly producing heisenbugs and all other kinds of failures which can
not be tracked down on systems with other versions…

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt/scripts/scan-tools.sh

    r2545 r2581  
    378378cd $topdir 
    379379rm -rf lbin/tmp 
     380 
     381# populate some more tools 
     382cat >lbin/autoconf <<-EOF 
     383        #!$BASH 
     384        echo Warning: this package calls autoconf! 
     385        exit 1 
     386EOF 
     387cat >lbin/automake <<-EOF 
     388        #!$BASH 
     389        echo Warning: this package calls automake! 
     390        exit 1 
     391EOF 
     392chmod a+x lbin/autoconf lbin/automake 
     393 
    380394exit $out