Skip to content
Snippets Groups Projects
Unverified Commit e798cbde authored by klang's avatar klang Committed by GitHub
Browse files

Small change to silence errors on make release

If SUPPORT isn't defined to an existing directory in xxx, make release throws error messages about not being able to find an include file when make goes to build its dependency web. However, make release is what is writing SUPPORT to be a given directory, so we'll just make the includes optional to quiet the build.
parent 228261cf
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,7 @@ SUPPORT=/home/oxygen/MOONEY/epics/synAppsGIT/support
-include $(TOP)/../configure/SUPPORT.$(EPICS_HOST_ARCH)
# Specify the standard synApps configuration.
include $(SUPPORT)/configure/RELEASE
-include $(SUPPORT)/configure/RELEASE
# We might need to redefine SUPPORT and EPICS_BASE after including that file
-include $(TOP)/../configure/SUPPORT.$(EPICS_HOST_ARCH)
......@@ -43,4 +43,4 @@ include $(SUPPORT)/configure/RELEASE
# For a local, custom configuration; copy $(SUPPORT)/configure/RELEASE
# to this directory as the file MASTER_RELEASE, edit the file, comment out
# the above include, and uncomment the following line.
#include $(TOP)/configure/MASTER_RELEASE
#-include $(TOP)/configure/MASTER_RELEASE
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment