changeset 3512:3df664b02b15

Only build openblas if ENABLE_OPENBLAS is 'yes'.
author John W. Eaton <jwe@octave.org>
date Fri, 07 Feb 2014 12:55:36 -0500
parents 799dcef88a41
children 92fdb983b351
files Makefile.in
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.in	Fri Feb 07 12:51:01 2014 -0500
+++ b/Makefile.in	Fri Feb 07 12:55:36 2014 -0500
@@ -377,7 +377,10 @@
 OCTAVE_FORGE_BASE_URL := 'http://sourceforge.net/projects/octave/files/Octave Forge Packages/Individual Package Releases'
 OCTAVE_FORGE_PACKAGES := $(addprefix of-,miscellaneous struct optim specfun general signal communications image io statistics control geometry windows odepkg linear-algebra sockets zenity actuarial data-smoothing fuzzy-logic-toolkit quaternion fits fl-core tsa dicom)
 
-BLAS_PACKAGES := blas openblas
+BLAS_PACKAGES := blas
+ifeq ($(ENABLE_OPENBLAS),yes)
+  BLAS_PACKAGES += openblas
+endif
 
 MAKE_SHARED_FROM_STATIC := \
   $(TOP_DIR)/tools/make-shared-from-static $(MAKE_SHARED_FROM_STATIC_OPTIONS)