diff options
Diffstat (limited to 'readline/support/shlib-install')
-rwxr-xr-x | readline/support/shlib-install | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/readline/support/shlib-install b/readline/support/shlib-install index cfec3bd1e62..3d0fb3c9c13 100755 --- a/readline/support/shlib-install +++ b/readline/support/shlib-install @@ -66,12 +66,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. Solaris doesn't seem to mind, -# but ldd still warns about it. +# 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*|linux*|solaris2*) +hpux*|darwin*|macosx*|linux*) if [ -z "$uninstall" ]; then chmod 555 ${INSTALLDIR}/${LIBNAME} fi ;; @@ -132,7 +131,7 @@ case "$host_os-$host_vendor" in fi ;; -bsdi4*|*gnu*|darwin*|macosx*|netbsd*|mirbsd*) +bsdi4*|*gnu*|darwin*|macosx*|netbsd*) # libname.so.M -> libname.so.M.N ${echo} ${RM} ${INSTALLDIR}/$LINK2 if [ -z "$uninstall" ]; then @@ -178,7 +177,7 @@ freebsd3*|freebsdaout*) fi ;; -freebsd[4-9]*|freebsd1[0-9]*|freebsdelf*|dragonfly*) +freebsd[4-9]*|freebsdelf*|dragonfly*) # libname.so -> libname.so.M ${echo} ${RM} ${INSTALLDIR}/$LINK1 if [ -z "$uninstall" ]; then |