HADOOP-13149. Windows distro build fails on dist-copynativelibs. Contributed by Chris Nauroth.

This commit is contained in:
Chris Nauroth 2016-05-16 12:05:02 -07:00
parent b9685e85d5
commit 576e2d1278
1 changed files with 17 additions and 16 deletions

View File

@ -325,22 +325,23 @@
<goal>exec</goal> <goal>exec</goal>
</goals> </goals>
<configuration> <configuration>
<executable>${project.parent.basedir}/../dev-support/bin/dist-copynativelibs</executable> <executable>${shell-executable}</executable>
<workingDirectory>${project.build.directory}</workingDirectory> <workingDirectory>${project.build.directory}</workingDirectory>
<requiresOnline>false</requiresOnline> <requiresOnline>false</requiresOnline>
<arguments> <arguments>
<argument>--version=${project.version}</argument> <argument>${project.parent.basedir}/../dev-support/bin/dist-copynativelibs</argument>
<argument>--builddir=${project.build.directory}</argument> <argument>--version=${project.version}</argument>
<argument>--artifactid=${project.artifactId}</argument> <argument>--builddir=${project.build.directory}</argument>
<argument>--isalbundle=${bundle.isal}</argument> <argument>--artifactid=${project.artifactId}</argument>
<argument>--isallib=${isal.lib}</argument> <argument>--isalbundle=${bundle.isal}</argument>
<argument>--openssllib=${openssl.lib}</argument> <argument>--isallib=${isal.lib}</argument>
<argument>--opensslbinbundle=${bundle.openssl.in.bin}</argument> <argument>--openssllib=${openssl.lib}</argument>
<argument>--openssllibbundle=${bundle.openssl}</argument> <argument>--opensslbinbundle=${bundle.openssl.in.bin}</argument>
<argument>--snappybinbundle=${bundle.snappy.in.bin}</argument> <argument>--openssllibbundle=${bundle.openssl}</argument>
<argument>--snappylib=${snappy.lib}</argument> <argument>--snappybinbundle=${bundle.snappy.in.bin}</argument>
<argument>--snappylibbundle=${bundle.snappy}</argument> <argument>--snappylib=${snappy.lib}</argument>
</arguments> <argument>--snappylibbundle=${bundle.snappy}</argument>
</arguments>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>