< prev index next >

make/autoconf/build-aux/config.sub

Print this page




  28 # wrap it and fix the broken property, if needed.
  29 
  30 DIR=`dirname $0`
  31 
  32 # First, filter out everything that doesn't begin with "aarch64-"
  33 if ! echo $* | grep '^aarch64-' >/dev/null ; then
  34     . $DIR/autoconf-config.sub "$@"
  35     # autoconf-config.sub exits, so we never reach here, but just in
  36     # case we do:
  37     exit
  38 fi
  39 
  40 while test $# -gt 0 ; do
  41     case $1 in 
  42         -- )   # Stop option processing
  43             shift; break ;;
  44         aarch64-* )
  45             config=`echo $1 | sed 's/^aarch64-/arm-/'`
  46             sub_args="$sub_args $config"
  47             shift; ;;





  48         - )    # Use stdin as input.
  49             sub_args="$sub_args $1"
  50             shift; break ;;
  51         * )
  52             sub_args="$sub_args $1"
  53             shift; ;;
  54     esac
  55 done
  56 
  57 result=`. $DIR/autoconf-config.sub $sub_args "$@"`
  58 exitcode=$?
  59 
  60 result=`echo $result | sed "s/^arm-/aarch64-/"`
  61 
  62 echo $result
  63 exit $exitcode
  64 


  28 # wrap it and fix the broken property, if needed.
  29 
  30 DIR=`dirname $0`
  31 
  32 # First, filter out everything that doesn't begin with "aarch64-"
  33 if ! echo $* | grep '^aarch64-' >/dev/null ; then
  34     . $DIR/autoconf-config.sub "$@"
  35     # autoconf-config.sub exits, so we never reach here, but just in
  36     # case we do:
  37     exit
  38 fi
  39 
  40 while test $# -gt 0 ; do
  41     case $1 in 
  42         -- )   # Stop option processing
  43             shift; break ;;
  44         aarch64-* )
  45             config=`echo $1 | sed 's/^aarch64-/arm-/'`
  46             sub_args="$sub_args $config"
  47             shift; ;;
  48         aarch32-* )
  49             config=`echo $1 | sed 's/^aarch32-/arm-/'`
  50             sub_args="$sub_args $config"
  51             replace="aarch32-"
  52             shift; ;;
  53         - )    # Use stdin as input.
  54             sub_args="$sub_args $1"
  55             shift; break ;;
  56         * )
  57             sub_args="$sub_args $1"
  58             shift; ;;
  59     esac
  60 done
  61 
  62 result=`. $DIR/autoconf-config.sub $sub_args "$@"`
  63 exitcode=$?
  64 
  65 result=`echo $result | sed "s/^arm-/aarch64-/"`
  66 
  67 echo $result
  68 exit $exitcode
  69 
< prev index next >