2015-05-18 15:27:46 +02:00
|
|
|
#!/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.
|
|
|
|
|
|
2020-11-30 01:39:28 +01:00
|
|
|
export CFLAGS="$CFLAGS -g"
|
2020-11-30 01:35:47 +01:00
|
|
|
cd scripts
|
|
|
|
|
exec ./configure "$@"
|