From 4ead11aa586422ffc9b44123fd4b1ba308f08f24 Mon Sep 17 00:00:00 2001 From: Anthony Barbier Date: Mon, 6 Aug 2018 09:25:36 +0100 Subject: COMPMID-1479: Fixed non fortran_order NPY loading. - Reverse dimensions when loading a non-fortran order tensor - Support saving tensors with arbitrary number of dimensions (Not just 2) - Fixed a minor bug in SONAME generation Change-Id: I36aa0b05c9d3568d1296da2d84d5e299b40459cc Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/142794 Tested-by: Jenkins Reviewed-by: Michele DiGiorgio --- SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'SConscript') diff --git a/SConscript b/SConscript index bfc3e78b70..7b0753ddcd 100644 --- a/SConscript +++ b/SConscript @@ -43,7 +43,7 @@ def build_library(name, sources, static=False, libs=[]): library_prefix = obj[0].path[:-(1 + len(SONAME_VERSION))] real_lib = "%s.%s" % (library_prefix, SONAME_VERSION) - for f in Glob("#%s*" % library_prefix): + for f in Glob("#%s.*" % library_prefix): if str(f) != real_lib: symlinks.append("%s/%s" % (directory,str(f))) -- cgit v1.2.1