# HG changeset patch # User John W. Eaton # Date 1391795736 18000 # Node ID 3df664b02b15b6cda7872c073ff8b5dc07a6e831 # Parent 799dcef88a41590cff6cb2ff3c0110e931d4f1f4 Only build openblas if ENABLE_OPENBLAS is 'yes'. diff -r 799dcef88a41 -r 3df664b02b15 Makefile.in --- 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)