diff options
Diffstat (limited to 'system')
-rw-r--r-- | system/postgresql/postgresql.SlackBuild | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/system/postgresql/postgresql.SlackBuild b/system/postgresql/postgresql.SlackBuild index 3dc0dbbad848..bd32ff4e2be6 100644 --- a/system/postgresql/postgresql.SlackBuild +++ b/system/postgresql/postgresql.SlackBuild @@ -101,6 +101,10 @@ make make install-strip DESTDIR=$PKG make install-docs DESTDIR=$PKG +# create symlinks to shared library for other programs to link against +( cd $PKG/usr/lib${LIBDIRSUFFIX} + for i in $(ls $PRGNAM/$PG_VERSION/lib/libpq.so*) ; do ln -sf $i ; done +) # Some interesting additional modules: # http://www.postgresql.org/docs/9.3/static/contrib.html |