From 0608bc5d82d780cf81f27e0297af37814cfd73dc Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Mon, 26 Apr 2021 22:32:23 +0200 Subject: [PATCH] delay creation of the softlink until after the library has been created --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index de0735c..555d1c4 100644 --- a/Makefile +++ b/Makefile @@ -167,7 +167,6 @@ ifeq ($(NO_SHARED), 1) $(error OpenBLAS: neither static nor shared are enabled.) endif endif - @-ln -fs $(LIBNAME) $(LIBPREFIX).$(LIBSUFFIX) @for d in $(SUBDIRS) ; \ do if test -d $$d; then \ $(MAKE) -C $$d $(@F) || exit 1 ; \ @@ -196,6 +195,7 @@ endif ifdef USE_THREAD @echo USE_THREAD=$(USE_THREAD) >> Makefile.conf_last endif + @-ln -fs $(LIBNAME) $(LIBPREFIX).$(LIBSUFFIX) @touch lib.grd prof : prof_blas prof_lapack -- 2.7.4