diff options
author | Pete Fritchman <petef@FreeBSD.org> | 2001-11-29 18:00:12 +0000 |
---|---|---|
committer | Pete Fritchman <petef@FreeBSD.org> | 2001-11-29 18:00:12 +0000 |
commit | 67e40562d50cbbd4fb0aafe2f349a065c1b87fb3 (patch) | |
tree | 4012460ec60187d1a50d6a93b18321853043b2cc /databases/firebird-client/pkg-install | |
parent | Update MAINTAINER's email address: anders@codefactory.se -> anders@hack.org (diff) |
Fix ownership and permissions on shlibs to make ldconfig happy.
PR: 31871
Submitted by: Sergey Skvortsov <skv@protey.ru>
Diffstat (limited to '')
-rw-r--r-- | databases/firebird-client/pkg-install | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/databases/firebird-client/pkg-install b/databases/firebird-client/pkg-install index c40e25e88ffc..61c651df083e 100644 --- a/databases/firebird-client/pkg-install +++ b/databases/firebird-client/pkg-install @@ -73,6 +73,10 @@ EOF elif [ "$2" = "POST-INSTALL" ]; then chown -R firebird:firebird $PKG_PREFIX/firebird +# make lib ldconfig-compatible +chown -R root:wheel $PKG_PREFIX/firebird/lib +chmod -R g-w $PKG_PREFIX/firebird/lib + # Turn everybody to read only. chmod -R o=r $PKG_PREFIX/firebird |