mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-08 20:27:27 +01:00
dc871beb50
This will fix issue where emulator is used doing: COMMAND ${CMAKE_CROSSCOMPILING_EMULATOR} /path/to/prog arg1 arg2 Prior to this commit, it wasn't working because the following command was used: /bin/sh -c /path/to/prog arg1 arg2
3 lines
20 B
Bash
Executable File
3 lines
20 B
Bash
Executable File
#!/bin/sh
|
|
exec "$@"
|