summaryrefslogtreecommitdiffhomepage
path: root/sigh
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2020-01-17 14:56:24 +0000
committerLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2020-01-17 14:56:24 +0000
commit35f3dfcb1498a2b157a1019b5d1572d95c670e8d (patch)
tree0f85ba07e985fa56b01722d7d013fea453da03aa /sigh
parentf70e086f236ce105febc102dffe6c6ffe56c6a9b (diff)
downloadmidipix_build-35f3dfcb1498a2b157a1019b5d1572d95c670e8d.tar.bz2
midipix_build-35f3dfcb1498a2b157a1019b5d1572d95c670e8d.tar.xz
{sigh,etc}/python2.7-config: moved.
vars/build.vars:gdb:${PKG_CONFIGURE_ARGS_EXTRA}: configure w/ --with-system-libiberty --with-system-readline --with-system-zlib --with-python=${PWD}/etc/python2.7-config.
Diffstat (limited to 'sigh')
-rwxr-xr-xsigh/python2.7-config23
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