mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-26 10:15:32 +01:00
20 lines
800 B
Diff
20 lines
800 B
Diff
--- a/src/Cutter.pro 2018-04-24 17:43:11.000000000 +0900
|
|
+++ b/src/Cutter.pro 2018-07-08 21:21:34.280748499 +0900
|
|
@@ -74,11 +74,13 @@
|
|
LIBS += -F$$PYTHON_FRAMEWORK_DIR -framework Python
|
|
DEFINES += MACOS_PYTHON_FRAMEWORK_BUNDLED
|
|
} else {
|
|
- CONFIG += link_pkgconfig
|
|
- !packagesExist(python3) {
|
|
- error("ERROR: Python 3 could not be found. Make sure it is available to pkg-config.")
|
|
+ system(type python3-config) {
|
|
+ LIBS += $$system(python3-config --libs)
|
|
+ TMP = $$system(python3-config --includes)
|
|
+ INCLUDEPATH += $$replace(TMP, "-I", "")
|
|
+ } else {
|
|
+ error("ERROR: Python 3 could not be found. Make sure it is available to python3-config.")
|
|
}
|
|
- PKGCONFIG += python3
|
|
}
|
|
}
|
|
|