diff options
Diffstat (limited to 'sigh/python2.7-config')
-rwxr-xr-x | sigh/python2.7-config | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/sigh/python2.7-config b/sigh/python2.7-config deleted file mode 100755 index 5888c816..00000000 --- a/sigh/python2.7-config +++ /dev/null @@ -1,23 +0,0 @@ -#!/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 |