8 lines
239 B
Plaintext
8 lines
239 B
Plaintext
|
|
#!/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.
|
||
|
|
|
||
|
|
( CFLAGS="-g" ; export CFLAGS ; cd scripts ; ./configure $* )
|