File: hardening-no-pie

package info (click to toggle)
gle-graphics 4.3.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,672 kB
  • sloc: cpp: 78,433; python: 150; makefile: 70; perl: 46; sh: 3; ansic: 1
file content (16 lines) | stat: -rw-r--r-- 577 bytes parent folder | download | duplicates (2)
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
 	)