amd64 libs may not work on QNAP because it's using a really old libc

This commit is contained in:
Reinhard Pointner 2018-08-16 03:00:48 +07:00
parent 0070056935
commit 24903934be
1 changed files with 7 additions and 1 deletions

View File

@ -630,7 +630,6 @@
<copy todir="${dir.staging}">
<fileset dir="${dir.installer}/qpkg">
<include name="**/*.png" />
<include name="**/*.so" />
</fileset>
</copy>
@ -652,6 +651,13 @@
<fileset dir="${dir.lib}/native/linux-amd64" />
</copy>
<!-- overwrite native libraries with QNAP compatible ones -->
<copy todir="${dir.staging}" overwrite="yes">
<fileset dir="${dir.installer}/qpkg">
<include name="**/*.so" />
</fileset>
</copy>
<!-- fix execute permissions -->
<chmod verbose="yes" perm="+x">
<fileset dir="${dir.base}" includes="**/*.sh" />