7 lines
128 B
Bash
Executable File
7 lines
128 B
Bash
Executable File
#!/usr/bin/env sh
|
|
# Generate the autotools build system and configure an in-tree build.
|
|
set -e
|
|
|
|
autoreconf -fi
|
|
./configure "$@"
|