We want all changes to happen there; retain a small script that simply forwards the action to the main script in that directory.
4 lines
128 B
Bash
Executable File
4 lines
128 B
Bash
Executable File
#!/bin/sh
|
|
# forward to the corresponding script in the cmake/Scripts/ directory
|
|
exec $(dirname $0)/cmake/Scripts/configure "$@"
|