From bbaf29abd942de47a3a99a80a67d12bab41b27db Mon Sep 17 00:00:00 2001 From: "Field G. Van Zee" Date: Thu, 4 Aug 2022 17:51:37 -0500 Subject: [PATCH] Very minor variable updates to common.mk. Details: - Fixed a harmless bug that would have allowed C++ headers into the list of header suffices specifically reserved for C99 headers. In practice, this would have had no substantive effect on anything since the core BLIS framework does not use C++ headers. --- common.mk | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/common.mk b/common.mk index 6661f84c5..33713e9f5 100644 --- a/common.mk +++ b/common.mk @@ -342,7 +342,8 @@ SANDBOX_CXX_SUFS := cc cpp cxx SANDBOX_SRC_SUFS := $(SANDBOX_C99_SUFS) $(SANDBOX_CXX_SUFS) # Header suffixes. -FRAME_HDR_SUFS := h +FRAME_H99_SUFS := h +FRAME_HDR_SUFS := $(FRAME_H99_SUFS) ADDON_H99_SUFS := h ADDON_HXX_SUFS := hh hpp hxx @@ -357,8 +358,8 @@ ALL_HDR_SUFS := $(sort $(FRAME_HDR_SUFS) \ $(ADDON_HDR_SUFS) \ $(SANDBOX_HDR_SUFS) ) -ALL_H99_SUFS := $(sort $(FRAME_HDR_SUFS) \ - $(ADDON_HDR_SUFS) \ +ALL_H99_SUFS := $(sort $(FRAME_H99_SUFS) \ + $(ADDON_H99_SUFS) \ $(SANDBOX_H99_SUFS) ) # The names of scripts that check output from the BLAS test drivers and