diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2011-01-24 14:44:26 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2011-01-24 14:46:31 +0100 |
commit | 930ed25687b44c7e8ec34089b15daf7105dfbfcc (patch) | |
tree | 1d3892f0ad04899013eaeb0a223469531999886c /solenv/inc/unxfbsd.mk | |
parent | 2854887bb4a50167aa23eca7e30fde7057044815 (diff) |
get rid of --noinhibit-exec linker flag
This option basically allows creation of binaries even if they are
broken and unusable in practice, which is definitely not wanted
(it e.g. allows "successfully" creating a binary that links the wrong
version of KDE libraries).
Diffstat (limited to 'solenv/inc/unxfbsd.mk')
-rw-r--r-- | solenv/inc/unxfbsd.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/solenv/inc/unxfbsd.mk b/solenv/inc/unxfbsd.mk index 4a22beaec256..9266d5d83e54 100644 --- a/solenv/inc/unxfbsd.mk +++ b/solenv/inc/unxfbsd.mk @@ -148,8 +148,8 @@ LINKFLAGSRUNPATH_NONE= LINKFLAGS=-Wl,-z,combreloc $(LINKFLAGSDEFS) # linker flags for linking applications -LINKFLAGSAPPGUI= -Wl,-export-dynamic -Wl,--noinhibit-exec -LINKFLAGSAPPCUI= -Wl,-export-dynamic -Wl,--noinhibit-exec +LINKFLAGSAPPGUI= -Wl,-export-dynamic +LINKFLAGSAPPCUI= -Wl,-export-dynamic # linker flags for linking shared libraries LINKFLAGSSHLGUI= -shared |