Prevent openldap module .la files to be removed

They are needed for loading modules...
This commit is contained in:
Pierre Labastie 2018-03-10 14:30:21 +00:00
parent 0d1c9f0ce1
commit 2969cdfb6b

View file

@ -38,7 +38,10 @@
<xsl:variable name="la-files-instr">
for libdir in /lib /usr/lib $(find /opt -name lib); do
find $libdir -name \*.la ! -path \*ImageMagick\* -delete
find $libdir -name \*.la \
! -path \*ImageMagick\* \
! -path \*openldap\* \
-delete
done
</xsl:variable>