From 4a04a9827dd14889cf74dd9f3b06d3530c6dc768 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Thu, 25 Sep 2014 10:15:01 +0200 Subject: [PATCH] perl: set proper perms to installed files. --- srcpkgs/perl/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/perl/template b/srcpkgs/perl/template index 47a1b0485ea..c0878d3f4f0 100644 --- a/srcpkgs/perl/template +++ b/srcpkgs/perl/template @@ -223,8 +223,8 @@ do_install() { make DESTDIR=${DESTDIR} install fi - # Set proper perms to shared libs. - find ${DESTDIR} -type f -name \*.so -exec chmod 644 {} \; + find ${DESTDIR}/usr/share -type f -exec chmod 644 {} \; + find ${DESTDIR}/usr/lib -type f -exec chmod 644 {} \; # Make a link from perl${version} to perl. ln -sf perl${version} ${DESTDIR}/usr/bin/perl