8 lines
189 B
Text
8 lines
189 B
Text
|
#!/bin/sh
|
||
|
# simplified sh wrapper around configure.py that relies on SUBST_VARS
|
||
|
|
||
|
SRCDIR=$(dirname $0)
|
||
|
export OLD_CONFIGURE="$SRCDIR"/old-configure
|
||
|
|
||
|
${MODPY_BIN} ${SRCDIR}/configure.py "$@"
|