summaryrefslogtreecommitdiff
path: root/configure
blob: ae0a0fc141a42deabfb4620a952f0ebc542643f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
#
# Use:  ./configure [args]
#
#	where [args] are arguments passed to the scripts/configure script
#
# 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.  It also sets up CFLAGS without the default optimizer
# flag (-O2).

( CFLAGS="-g"; export CFLAGS; cd scripts ; ./configure "$@" )