Changeset 3780

Show
Ignore:
Timestamp:
07/27/08 03:09:46 (5 months ago)
Author:
n0-1
Message:

fix for non-existent ulimit

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt/mk/build.mk

    r3777 r3780  
    1212endif 
    1313 
     14ifneq ($(shell ulimit -d),unlimited) 
    1415ifneq ($(shell if (( $$(ulimit -d) < 250000 )); then echo warn; else echo ok; fi),ok) 
    1516$(error your ulimit datasize is too small, use 250 MB or more) 
     17endif 
    1618endif 
    1719