From 0563d2993b7a2afd9708247379dcbab8062c4edb Mon Sep 17 00:00:00 2001
From: Fanny Rodolakis <rodolakis@anl.gov>
Date: Mon, 24 Apr 2023 14:51:01 -0500
Subject: [PATCH] 2.4 explanation

---
 2-IOC-deployment.md | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/2-IOC-deployment.md b/2-IOC-deployment.md
index 2cd25c8..ad1d68f 100644
--- a/2-IOC-deployment.md
+++ b/2-IOC-deployment.md
@@ -115,6 +115,24 @@ configure/CONFIG:18: *** EPICS_BASE must be set in a configure/RELEASE file.  St
 ```
 </details>
 
+<details>
+<summary>what does this mean?</summary>
+
+This error message indicates that the EPICS_BASE environment variable is not defined in your configure/RELEASE file.
+
+EPICS_BASE is a mandatory environment variable that points to the location of the EPICS base installation directory. The configure/RELEASE file is used to define EPICS-related environment variables required for building an IOC.
+
+Here's an example of how to set the EPICS_BASE variable in the configure/RELEASE file:
+
+```
+EPICS_BASE=/path/to/epics/base
+```
+
+where "/path/to/epics/base" points to your EPICS base installation directory.
+
+Once you have set the EPICS_BASE variable in the configure/RELEASE file, try building your IOC again and the error should be resolved.
+</details>
+
 ### 2.5 Resolve build error #1
 
 Modify **configure/RELEASE** so that ``EPICS_BASE`` is defined.
-- 
GitLab