Changeset 4508
- Timestamp:
- Apr 26, 2013 11:44:26 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/configure-bb10
r4500 r4508 16 16 fi 17 17 18 if test "$1" = "--simulator"; then 19 shift 18 # Find simulator argument 19 args="" 20 simulator="no" 21 for arg in "$@"; do 22 if test "$arg" = "--simulator"; then 23 simulator="yes" 24 else 25 args="$args $arg" 26 fi 27 done 28 29 if test "$simulator" = "yes"; then 20 30 TARGET_ARCH="x86" 21 31 TARGET_ARCHEND=${TARGET_ARCH} … … 42 52 43 53 # Invoke configure 44 ./configure --host=${TARGET_HOST} --disable-oss $ *54 ./configure --host=${TARGET_HOST} --disable-oss $args 45 55 RETVAL=$? 46 56
Note: See TracChangeset
for help on using the changeset viewer.