7 lines
189 B
Bash
7 lines
189 B
Bash
#!/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 "$@"
|