Skip to content

Commit 5aecdcf

Browse files
committed
SPARK-5669 [BUILD] [HOTFIX] Spark assembly includes incompatibly licensed libgfortran, libgcc code via JBLAS
Correct exclusion path for JBLAS native libs. (More explanation coming soon on the mailing list re: 1.3.0 RC1) Author: Sean Owen <sowen@cloudera.com> Closes #4673 from srowen/SPARK-5669.2 and squashes the following commits: e29693c [Sean Owen] Correct exclusion path for JBLAS native libs
1 parent 82197ed commit 5aecdcf

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

assembly/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,9 @@
119119
<artifact>org.jblas:jblas</artifact>
120120
<excludes>
121121
<!-- Linux amd64 is OK; not statically linked -->
122-
<exclude>lib/Linux/i386/**</exclude>
123-
<exclude>lib/Mac OS X/**</exclude>
124-
<exclude>lib/Windows/**</exclude>
122+
<exclude>lib/static/Linux/i386/**</exclude>
123+
<exclude>lib/static/Mac OS X/**</exclude>
124+
<exclude>lib/static/Windows/**</exclude>
125125
</excludes>
126126
</filter>
127127
</filters>

0 commit comments

Comments
 (0)