diff options
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/python2.7-config | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/etc/python2.7-config b/etc/python2.7-config new file mode 100755 index 00000000..5888c816 --- /dev/null +++ b/etc/python2.7-config @@ -0,0 +1,23 @@ +#!/bin/sh + +set -eu + +for arg ; do + case "$arg" in + --version) + printf 'Python 2.7.15' + ;; + + --includes) + ;; + + --ldflags) + printf '%s' '-lpython2.7' + ;; + + --exec-prefix) + ;; + esac +done + +exit 0 |