mirror of
https://github.com/jorisvink/kore
synced 2025-03-12 22:09:02 -04:00
15 lines
213 B
Bash
15 lines
213 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ $# -ne 1 ]; then
|
||
|
echo "python3-flags.sh [--ldflags|--includes]"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
python3-config $1 --embed > /dev/null 2>&1
|
||
|
|
||
|
if [ $? -eq 0 ]; then
|
||
|
python3-config $1 --embed
|
||
|
else
|
||
|
python3-config $1
|
||
|
fi
|