Browse Source

Merge branch 'feature/new_ubuntu_runner' into 'master'

added chmod to give exec rights on shared libs for ubuntu packaging

See merge request BC/public/bcg729!3
keep-around/20838a5eb914383d5112174fe3a71967034bcdc6
Peio Rigaux 7 years ago
parent
commit
20838a5eb9
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      build/rpm/bcg729.spec.cmake

+ 5
- 0
build/rpm/bcg729.spec.cmake View File

@ -66,6 +66,11 @@ make %{?_smp_mflags}
%install
make install DESTDIR=%{buildroot}
# Dirty workaround to give exec rights for all shared libraries. Debian packaging needs this
# TODO : set CMAKE_INSTALL_SO_NO_EXE for a cleaner workaround
chmod +x `find %{buildroot} *.so.*`
%check
%{ctest_name} -V %{?_smp_mflags}


Loading…
Cancel
Save