blob: 8b5118e22c21e999641edbc96068921a4c96c326 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
#An "identity cross-execute" script
#It can be used for testing the cross-build infrastructure
#as follows:
#./configure --cross-compile --cross-execute=./script/identity_cc.sh
#If the build is actually a native build, then the configuration
#result should be just like running ./configure without --cross-compile.
eval "$@"
|