blob: ebfd6c82aeee466ebcaccc1d67ed5e7aa7110dc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/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
|