mirror of
https://github.com/RTimothyEdwards/netgen.git
synced 2026-08-28 17:05:45 +02:00
The previous script would swallow the exit code of the `./configure` script and thus it looked like doing a configure always succeeded. Signed-off-by: Tim 'mithro' Ansell <[email protected]>
10 lines
229 B
Bash
Executable File
10 lines
229 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# This script is a workaround to GNU autoconf which can't deal with having
|
|
# all of its config scripts in a different directory than the configure
|
|
# script itself.
|
|
|
|
export CFLAGS="-g"
|
|
cd scripts
|
|
exec ./configure "$@"
|