1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: fix lintian hardening-no-pie warning
Author: Christian T. Steigies <cts@debian.org>
Last-Update: 2024-01-22
Index: gle-graphics-4.3.5/src/gui/CMakeLists.txt
===================================================================
--- gle-graphics-4.3.5.orig/src/gui/CMakeLists.txt
+++ gle-graphics-4.3.5/src/gui/CMakeLists.txt
@@ -135,7 +135,7 @@ target_link_libraries ( qgle LINK_PUBLIC
)
if(UNIX AND NOT APPLE)
- target_link_options(qgle PUBLIC -no-pie)
+ # target_link_options(qgle PUBLIC -no-pie)
qt_import_plugins( qgle
INCLUDE_BY_TYPE platforms
)
|