Skip to content
Snippets Groups Projects
Commit 109afb03 authored by Simon Rose's avatar Simon Rose
Browse files

Removed references to startup/EpicsHostArch

parent 8b324b29
No related branches found
No related tags found
No related merge requests found
# Variables should be transferred to module_name.makefile # Variables should be transferred to module_name.makefile
EPICS_HOST_ARCH:=$(shell $(EPICS_BASE)/startup/EpicsHostArch.pl 2> /dev/null)
# In near future, BASE may drop "startup" directory, so
# Note that the following line is not the same as e3-base, CONFIG_EXPORT
ifeq ($(strip $(EPICS_HOST_ARCH)),)
EPICS_HOST_ARCH:=$(shell perl $(EPICS_BASE)/lib/perl/EpicsHostArch.pl 2> /dev/null) EPICS_HOST_ARCH:=$(shell perl $(EPICS_BASE)/lib/perl/EpicsHostArch.pl 2> /dev/null)
endif
MSI:=$(EPICS_BASE)/bin/$(EPICS_HOST_ARCH)/msi MSI:=$(EPICS_BASE)/bin/$(EPICS_HOST_ARCH)/msi
......
# Variables should be transferred to module_name.makefile # Variables should be transferred to module_name.makefile
EPICS_HOST_ARCH:=$(shell $(EPICS_BASE)/startup/EpicsHostArch.pl 2> /dev/null)
# In near future, BASE may drop "startup" directory, so
# Note that the following line is not the same as e3-base, CONFIG_EXPORT
ifeq ($(strip $(EPICS_HOST_ARCH)),)
EPICS_HOST_ARCH:=$(shell perl $(EPICS_BASE)/lib/perl/EpicsHostArch.pl 2> /dev/null) EPICS_HOST_ARCH:=$(shell perl $(EPICS_BASE)/lib/perl/EpicsHostArch.pl 2> /dev/null)
endif
MSI:=$(EPICS_BASE)/bin/$(EPICS_HOST_ARCH)/msi MSI:=$(EPICS_BASE)/bin/$(EPICS_HOST_ARCH)/msi
......
...@@ -214,12 +214,7 @@ else ...@@ -214,12 +214,7 @@ else
fi fi
epics_host_arch_file="${EPICS_BASE}/startup/EpicsHostArch.pl" EPICS_HOST_ARCH=$(perl "${EPICS_BASE}"/lib/perl/EpicsHostArch.pl)
if [ -e "$epics_host_arch_file" ]; then
EPICS_HOST_ARCH=$("${EPICS_BASE}/startup/EpicsHostArch.pl")
else
EPICS_HOST_ARCH=$(perl "${EPICS_BASE}"/lib/perl/EpicsHostArch.pl)
fi
E3_REQUIRE_BIN=${E3_REQUIRE_LOCATION}/bin E3_REQUIRE_BIN=${E3_REQUIRE_LOCATION}/bin
E3_REQUIRE_LIB=${E3_REQUIRE_LOCATION}/lib E3_REQUIRE_LIB=${E3_REQUIRE_LOCATION}/lib
......
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