epics-modules / xxx

APS BCDA synApps module: xxx

Home Page:http://epics-modules.github.io/xxx

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

areaDetector's CONFIG_SITE overrides CHECK_RELEASE

kmpeters opened this issue · comments

xxx/configure/CONFIG_SITE sets CHECK_RELEASE:

CHECK_RELEASE = YES

And later include's areaDetector's CONFIG_SITE:
-include $(AREA_DETECTOR)/configure/CONFIG_SITE

Which also sets CHECK_RELEASE:
https://github.com/areaDetector/areaDetector/blob/a29a631173ea0fb4807a3f47b40519a6a2f5b0a7/configure/CONFIG_SITE#L17

This isn't a problem with the default values, but setting CHECK_RELEASE=WARN for an IOC is very common. A simple solution would be to set CHECK_RELEASE in xxx's CONFIG_SITE after areaDetector's CONFIG_SITE.

Fixed in ca47af9