summaryrefslogtreecommitdiffhomepage
path: root/etc/python2.7-config
diff options
context:
space:
mode:
Diffstat (limited to 'etc/python2.7-config')
-rwxr-xr-xetc/python2.7-config23
1 files changed, 0 insertions, 23 deletions
diff --git a/etc/python2.7-config b/etc/python2.7-config
deleted file mode 100755
index ebfd6c82..00000000
--- a/etc/python2.7-config
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-
-set -eu
-
-for arg ; do
- case "$arg" in
- --version)
- printf 'Python 2.7.18'
- ;;
-
- --includes)
- ;;
-
- --ldflags)
- printf '%s' '-lpython2.7'
- ;;
-
- --exec-prefix)
- ;;
- esac
-done
-
-exit 0