Prevent openldap module .la files to be removed
They are needed for loading modules...
This commit is contained in:
parent
0d1c9f0ce1
commit
2969cdfb6b
1 changed files with 4 additions and 1 deletions
|
@ -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>
|
||||
|
|
Reference in a new issue