From 35f3dfcb1498a2b157a1019b5d1572d95c670e8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucio=20Andr=C3=A9s=20Illanes=20Albornoz?= Date: Fri, 17 Jan 2020 14:56:24 +0000 Subject: {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. --- etc/python2.7-config | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 etc/python2.7-config (limited to 'etc') 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 -- cgit v1.2.3