diff options
Diffstat (limited to 'support/shlib-install')
-rwxr-xr-x | support/shlib-install | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/support/shlib-install b/support/shlib-install index 2cd252a..790f53e 100755 --- a/support/shlib-install +++ b/support/shlib-install @@ -65,10 +65,11 @@ fi # post-install/uninstall # HP-UX and Darwin/MacOS X require that a shared library have execute permission +# Linux does, too, and ldd warns about it # Cygwin installs both a dll (which must go in $BINDIR) and an implicit # link library (in $libdir) case "$host_os" in -hpux*|darwin*|macosx*) +hpux*|darwin*|macosx*|linux*) if [ -z "$uninstall" ]; then chmod 555 ${INSTALLDIR}/${LIBNAME} fi ;; |