# HG changeset patch # User John W. Eaton # Date 1472843412 14400 # Node ID 57a662852ddc345bb0866efa949c9aec51558d1b # Parent 460c87427a67076e310f43e7504396a1ced7dcc9 correct lists of forge packages and dependencies * Makefile.in: Fix of-sparsersb package name. Only include dependencies for forge packages that are built. diff -r 460c87427a67 -r 57a662852ddc Makefile.in --- a/Makefile.in Fri Sep 02 06:20:46 2016 -0400 +++ b/Makefile.in Fri Sep 02 15:10:12 2016 -0400 @@ -438,10 +438,10 @@ OCTAVE_FORGE_PACKAGES := $(addprefix of-,miscellaneous struct optim specfun general signal communications image io statistics control geometry windows linear-algebra sockets zenity data-smoothing fuzzy-logic-toolkit quaternion fits tsa dicom netcdf ltfat database instrument-control generate_html nurbs strings financial stk splines dataframe lssa queueing ga odepkg interval nan ocs mapping tisean video zeromq) ifeq ($(ENABLE_64),no) ## This package does not work properly with 64-bit indexing - OCTAVE_FORGE_PACKAGES += sparsersb + OCTAVE_FORGE_PACKAGES += of-sparsersb endif -# get ALL deps for all of- packages, regardless of whethe building the actual forge package in the installer -OCTAVE_FORGE_DEPS:= $(sort $(foreach p,$(wildcard $(TOP_DIR)/src/of-*.mk),$(shell $(SED) -n 's/.*_DEPS.*:=\(.*\)/\1/p' $p))) +# get ALL deps for all of- packages, regardless of whether building the actual forge package in the installer +OCTAVE_FORGE_DEPS:= $(sort $(foreach p,$(addprefix $(TOP_DIR)/src/,$(addsuffix .mk,$(OCTAVE_FORGE_PACKAGES))),$(shell $(SED) -n 's/.*_DEPS.*:=\(.*\)/\1/p' $p))) BLAS_PACKAGES := blas ifeq ($(ENABLE_OPENBLAS),yes)