# HG changeset patch # User Aleksej Bobylev # Date 1546095793 -7200 # Node ID 2b48c0f89d4c002dbbdc8e913fb80a57d8e50817 # Parent f7f0cfc92ab510bc74073b868f1bdd61fb77fcb8 garcon, libacpi, mypaint: make shared libs executables to correct determine architecture (no "noarch") diff -r f7f0cfc92ab5 -r 2b48c0f89d4c garcon/receipt --- a/garcon/receipt Sat Dec 29 13:14:07 2018 +0200 +++ b/garcon/receipt Sat Dec 29 17:03:13 2018 +0200 @@ -22,7 +22,9 @@ $CONFIGURE_ARGS && fix libtool && make && - make install + make install || return 1 + + find $install -type f -name '*.so*' -exec chmod 755 '{}' \; # 644->755 } genpkg_rules() { diff -r f7f0cfc92ab5 -r 2b48c0f89d4c libacpi/receipt --- a/libacpi/receipt Sat Dec 29 13:14:07 2018 +0200 +++ b/libacpi/receipt Sat Dec 29 17:03:13 2018 +0200 @@ -16,7 +16,9 @@ compile_rules() { make PREFIX=/usr && - make PREFIX=/usr DESTDIR=$install install + make PREFIX=/usr DESTDIR=$install install || return 1 + + find $install -type f -name '*.so*' -exec chmod 755 '{}' \; # 644->755 } genpkg_rules() { diff -r f7f0cfc92ab5 -r 2b48c0f89d4c mypaint/receipt --- a/mypaint/receipt Sat Dec 29 13:14:07 2018 +0200 +++ b/mypaint/receipt Sat Dec 29 17:03:13 2018 +0200 @@ -16,7 +16,9 @@ compile_rules() { scons && - scons prefix=$install/usr install + scons prefix=$install/usr install || return 1 + + find $install -type f -name '*.so*' -exec chmod 755 '{}' \; # 644->755 } genpkg_rules() {