Skip to content

Commit 9f256ce

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 <[email protected]> Closes #4673 from srowen/SPARK-5669.2 and squashes the following commits: e29693c [Sean Owen] Correct exclusion path for JBLAS native libs (cherry picked from commit 5aecdcf) Signed-off-by: Sean Owen <[email protected]>
1 parent 3997e74 commit 9f256ce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

assembly/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,9 @@
123123
<artifact>org.jblas:jblas</artifact>
124124
<excludes>
125125
<!-- Linux amd64 is OK; not statically linked -->
126-
<exclude>lib/Linux/i386/**</exclude>
127-
<exclude>lib/Mac OS X/**</exclude>
128-
<exclude>lib/Windows/**</exclude>
126+
<exclude>lib/static/Linux/i386/**</exclude>
127+
<exclude>lib/static/Mac OS X/**</exclude>
128+
<exclude>lib/static/Windows/**</exclude>
129129
</excludes>
130130
</filter>
131131
</filters>

0 commit comments

Comments
 (0)