From aee11f266bb2a8d845d6f70c198e537060a120cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torsten=20B=C3=B6gershausen?= Date: Wed, 12 Feb 2020 11:15:25 +0100 Subject: [PATCH] Overwrite configure/RELEASE The current scripts append the line -include $(TOP)/../RELEASE.local at the end of the configure/RELEASE file (if needed). While this works for most EPICS modules, there is one drawback: Definitions like SUPPORT=/myfavorite/build/server are not allways overwritten (better say undefined). Fix this and create a configure/RELEASE file which is the same for all EPICS modules. Simply overwrite configure/RELEASE with what we want. Thanks to the EPICS community for this suggestion --- travis/utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis/utils.sh b/travis/utils.sh index 0e0ef9a..46e8466 100644 --- a/travis/utils.sh +++ b/travis/utils.sh @@ -182,7 +182,7 @@ add_dependency() { release=$CACHEDIR/$dirname-$TAG/configure/RELEASE if [ -e $release ] then - grep -q "include \$(TOP)/../RELEASE.local" $release || echo "-include \$(TOP)/../RELEASE.local" >> $release + echo "-include \$(TOP)/../RELEASE.local" > $release fi fi # run hook