Skip to content
Snippets Groups Projects
Commit e59f9a54 authored by Anders Lindh Olsson's avatar Anders Lindh Olsson :8ball:
Browse files

E3-1471: Remove setE3Env.bash

parent 6e96b0ff
No related branches found
No related tags found
1 merge request!164E3-1471: Remove setE3Env.bash
Pipeline #177336 failed
...@@ -44,6 +44,7 @@ in the wrapper would cause all of the module `make` commands to fail. ...@@ -44,6 +44,7 @@ in the wrapper would cause all of the module `make` commands to fail.
* Rewrite internal linked list to have better memory safety * Rewrite internal linked list to have better memory safety
* Removed enabling of core dump generation and max file size limit to allow developers more flexibility (enable and set limit by calling `ulimit -S -c x` where x is max size in blocks before IOC startup) * Removed enabling of core dump generation and max file size limit to allow developers more flexibility (enable and set limit by calling `ulimit -S -c x` where x is max size in blocks before IOC startup)
* Remove `ARCH_FILTER` support; from now on, only `EXCLUDE_ARCHS` is used. * Remove `ARCH_FILTER` support; from now on, only `EXCLUDE_ARCHS` is used.
* Remove `setE3Env.bash` alias (for `activate`)
## [5.0.0] ## [5.0.0]
......
...@@ -9,7 +9,6 @@ E3_TEST_SCRIPT := $(TOP)/tools/test_installed_modules.sh ...@@ -9,7 +9,6 @@ E3_TEST_SCRIPT := $(TOP)/tools/test_installed_modules.sh
# #
E3_SHELL_FILES := $(wildcard $(E3_MODULE_SRC_PATH)/tools/iocsh*) E3_SHELL_FILES := $(wildcard $(E3_MODULE_SRC_PATH)/tools/iocsh*)
E3_IOC_CFG_FILES += $(E3_MODULE_SRC_PATH)/tools/activate E3_IOC_CFG_FILES += $(E3_MODULE_SRC_PATH)/tools/activate
E3_IOC_CFG_FILES += $(E3_MODULE_SRC_PATH)/tools/setE3Env.bash
E3_IOC_CFG_FILES += $(E3_MODULE_SRC_PATH)/tools/promptE3Env.bash E3_IOC_CFG_FILES += $(E3_MODULE_SRC_PATH)/tools/promptE3Env.bash
E3_REQUIRE_CONF_FILES := $(filter-out $(FILE_FILTER), $(wildcard $(TOP)/configure/E3/*)) E3_REQUIRE_CONF_FILES := $(filter-out $(FILE_FILTER), $(wildcard $(TOP)/configure/E3/*))
......
#!/usr/bin/env bash
# This file exists for (temporary) backwards compatability
echo "setE3Env.bash has been deprecated, please use activate instead" >&2
DIR="${BASH_SOURCE[0]%/*}"
# shellcheck source=require-ess/tools/activate
. "$DIR"/activate
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment