diff options
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 + |