| OLD | NEW |
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 # Copyright (c) 1999-2014, International Business Machines Corporation and | 2 # Copyright (c) 1999-2015, International Business Machines Corporation and |
| 3 # others. All Rights Reserved. | 3 # others. All Rights Reserved. |
| 4 | 4 |
| 5 # runConfigureICU: This script will run the "configure" script for the appropria
te platform | 5 # runConfigureICU: This script will run the "configure" script for the appropria
te platform |
| 6 # Only supported platforms are recognized | 6 # Only supported platforms are recognized |
| 7 | 7 |
| 8 me=`basename $0` | 8 me=`basename $0` |
| 9 OPTS= | 9 OPTS= |
| 10 | 10 |
| 11 usage() | 11 usage() |
| 12 { | 12 { |
| (...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 434 if $configure $OPTS $@ | 434 if $configure $OPTS $@ |
| 435 then | 435 then |
| 436 echo | 436 echo |
| 437 echo If the result of the above commands looks okay to you, go to the di
rectory | 437 echo If the result of the above commands looks okay to you, go to the di
rectory |
| 438 echo source in the ICU distribution to build ICU. Please remember that I
CU needs | 438 echo source in the ICU distribution to build ICU. Please remember that I
CU needs |
| 439 echo GNU make to build properly... | 439 echo GNU make to build properly... |
| 440 else | 440 else |
| 441 echo $0: ./configure failed | 441 echo $0: ./configure failed |
| 442 exit 1 | 442 exit 1 |
| 443 fi | 443 fi |
| OLD | NEW |