Skip to content

Commit

Permalink
Small change to silence errors on make release
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
keenanlang authored Aug 19, 2019
1 parent 228261c commit e798cbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure/RELEASE
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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 comments on commit e798cbd

Please sign in to comment.