From 351d4e0d687e8b13c7cf4d04e6a9d814d6f7402a Mon Sep 17 00:00:00 2001 From: Fanny Rodolakis <rodolakis@anl.gov> Date: Fri, 12 May 2023 13:41:03 -0500 Subject: [PATCH] fix typos --- 2-IOC-deployment.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/2-IOC-deployment.md b/2-IOC-deployment.md index 4b85ca7..39cfb89 100644 --- a/2-IOC-deployment.md +++ b/2-IOC-deployment.md @@ -221,9 +221,9 @@ $ echo "LINUX_NET_INSTALLED = NO" > configure/CONFIG_SITE.local <details> <summary>what does this mean?</summary> -The **configure/CONFIG_SITE.local** file is used to specify local configuration settings for building an EPICS IOC. By setting ``LINUX_NET_INSTALLED`` to ``NO``, you are disabling the use of the "libnet" library by telling the build system that this library is not installed on your system, which was causing the linker errors. +The **configure/CONFIG_SITE.local** file is used to specify local configuration settings for building an EPICS IOC. By setting ``LINUX_NET_INSTALLED`` to ``NO``, you are disabling the use of the net library by telling the build system that this library is not installed on your system, which was causing the linker errors. -The IOC build system will now use an alternative networking library instead of libnet, allowing the IOC to be built without requiring the installation of the "libnet" library. +The IOC build system will now use an alternative networking library instead of libnet, allowing the IOC to be built without requiring the installation of the net library. **Note:** the linux command ``$ echo "LINUX_NET_INSTALLED = NO" > configure/CONFIG_SITE.local`` writes the text "LINUX_NET_INSTALLED = NO" to the **configureCONFIG_SITE.local** file. If the file does not exist, the ``>`` sign creates the file and writes the output to it. If the file already exists, the ``>`` sign overwrites its contents with the new output. @@ -231,7 +231,7 @@ The IOC build system will now use an alternative networking library instead of l ### 2.8 Build the IOC -We do a clean build at this point to ensure the fix for the previous failed build takes effect. The value that was set in in `CONFIG_SITE.local` causes some software to be exluded from the IOC. Without the `make distclean` the excluded software can be partially included in the IOC, which results in build problems. +We do a clean build at this point to ensure the fix for the previous failed build takes effect. The value that was set in `CONFIG_SITE.local` causes some software to be exluded from the IOC. Without the `make distclean` the excluded software can be partially included in the IOC, which results in build problems. ``` $ make distclean -- GitLab