-
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #124 from jschueller/hard_sysroot
Fix harcoded sysroot paths
- Loading branch information
Showing
8 changed files
with
30 additions
and
104 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,8 +71,6 @@ pin_run_as_build: | |
max_pin: x.x | ||
readline: | ||
- '8.0' | ||
ruby: | ||
- '2.5' | ||
sqlite: | ||
- '3' | ||
zlib: | ||
|
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
recipe/patches/0009-qtbase-fix-hardcoded-sysroot-path.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
diff --git a/src/gui/Qt5GuiConfigExtras.cmake.in b/src/gui/Qt5GuiConfigExtras.cmake.in | ||
index 84dbbfeb..ade39e30 100644 | ||
--- a/qtbase/src/gui/Qt5GuiConfigExtras.cmake.in | ||
+++ b/qtbase/src/gui/Qt5GuiConfigExtras.cmake.in | ||
@@ -171,11 +171,11 @@ endmacro() | ||
|
||
|
||
!!IF !isEmpty(CMAKE_EGL_LIBS) | ||
-_qt5gui_find_extra_libs(EGL \"$$CMAKE_EGL_LIBS\" \"$$CMAKE_EGL_LIBDIR\" \"$$CMAKE_EGL_INCDIRS\") | ||
+_qt5gui_find_extra_libs(EGL \"EGL\" \"\" \"\") | ||
!!ENDIF | ||
|
||
!!IF !isEmpty(CMAKE_OPENGL_LIBS) | ||
-_qt5gui_find_extra_libs(OPENGL \"$$CMAKE_OPENGL_LIBS\" \"$$CMAKE_OPENGL_LIBDIR\" \"$$CMAKE_OPENGL_INCDIRS\") | ||
+_qt5gui_find_extra_libs(OPENGL \"GL\" \"\" \"\") | ||
|
||
!!ENDIF | ||
|