Changeset 5808:03a414d5afc4 in roaraudio


Ignore:
Timestamp:
12/18/12 12:49:28 (11 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

added function error_missing()

Location:
build-system
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • build-system/configure.lib

    r5787 r5808  
    3131} 
    3232 
     33error_missing() { 
     34 _object="$1" 
     35 [ "$_object" = '' ] && _object="$last_tested_object" 
     36 echo "Error: $_object is missing but required." 
     37 exit 1 
     38} 
     39 
    3340write_help() { 
    3441 echo 'COMMON OPTIONS:' 
  • build-system/configure.tests

    r5806 r5808  
    276276 
    277277 name="$1" 
     278 last_tested_object="$name" 
    278279 echo -n "checking for $name... " 
    279280 echo "TEST LIB: $name" >&5 
  • build-system/configure.vars

    r5787 r5808  
    8181# other stuff we need to reset: 
    8282infotext='' 
     83last_tested_object='' 
    8384 
    8485CCTF="false" 
Note: See TracChangeset for help on using the changeset viewer.