mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
11 lines
337 B
Bash
11 lines
337 B
Bash
|
#!/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 "$@"
|