mirror of
https://github.com/RTimothyEdwards/netgen.git
synced 2026-08-28 08:57:30 +02:00
10 lines
237 B
Bash
Executable File
10 lines
237 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="$CFLAGS -g"
|
|
cd scripts
|
|
exec ./configure "$@"
|