diff options
author | James Almer <jamrial@gmail.com> | 2018-04-07 18:52:02 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2018-04-13 11:01:29 -0300 |
commit | e7a2f1f8d8350a768ca88b61303449433962b52d (patch) | |
tree | caea1cdbd49b4f7565a11ecf704ab6eeea96efa1 /configure | |
parent | 4078291d32c210e4ccd8b97c7cd95c87fda42108 (diff) | |
download | ffmpeg-e7a2f1f8d8350a768ca88b61303449433962b52d.tar.gz |
configure: disable direct stripping in OpenBSD
It appears strip -o creates new files without preserving permissions
from the source binary, resulting in non executable files.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -5048,6 +5048,7 @@ case $target_os in ;; openbsd|bitrig) disable symver + striptype="" SHFLAGS='-shared' SLIB_INSTALL_NAME='$(SLIBNAME).$(LIBMAJOR).$(LIBMINOR)' SLIB_INSTALL_LINKS= |