diff options
author | G.J.R. Timmer <gjr.timmer@gmail.com> | 2016-12-21 10:33:16 +0000 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-02-07 11:53:35 +0100 |
commit | 04de19a1bdf4fd5cdaff7ded16e95db39fc087e9 (patch) | |
tree | f5c5c2b2209674002b35134841b4893cd6cfbf59 /main/postgresql/postgresql-plperl.post-install | |
parent | bdd718e607ea2be981c3b7861469102c358e4e37 (diff) | |
download | aports-04de19a1bdf4fd5cdaff7ded16e95db39fc087e9.tar.bz2 aports-04de19a1bdf4fd5cdaff7ded16e95db39fc087e9.tar.xz |
main/postgresql: add support for PL/Perl, PL/Python and PL/Tcl
Diffstat (limited to 'main/postgresql/postgresql-plperl.post-install')
-rw-r--r-- | main/postgresql/postgresql-plperl.post-install | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/main/postgresql/postgresql-plperl.post-install b/main/postgresql/postgresql-plperl.post-install new file mode 100644 index 0000000000..4cc8198c04 --- /dev/null +++ b/main/postgresql/postgresql-plperl.post-install @@ -0,0 +1,6 @@ +#!/bin/sh + +if [ ! -L /usr/lib/libperl.so ]; then + find /usr/lib/* -name libperl.so -exec ln -s {} /usr/lib/libperl.so \; +fi + |