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

Force project to be lowercase

parent 7650f8d3
No related branches found
No related tags found
1 merge request!7Submodule merge
......@@ -14,3 +14,4 @@ dkms.conf
.#*
\#*
.cvsignore
.vscode
\ No newline at end of file
......@@ -159,6 +159,9 @@ MODULE=
PROJECT=
PRJDIR:=$(subst -,_,$(subst .,_,$(notdir $(patsubst %Lib,%,$(patsubst %/snl,%,$(patsubst %/src,%,${PWD}))))))
PRJ = $(strip $(or ${MODULE},${PROJECT},${PRJDIR}))
# To keep consistent between conda/nfs, we will force all modules to be lowercase.
PRJ := $(shell echo $(PRJ) | tr '[:upper:]' '[:lower:]')
export PRJ
OS_CLASS_LIST = $(BUILDCLASSES)
......@@ -1110,4 +1113,6 @@ endif # EPICSVERSION defined
##
## Monday, September 9 15:25:53 CEST 2019 : Revert E3_SITEMODS_PATH from E3_SITELIBS_PATH in the snc path
##
## Tuesday, June 30 2020 : Combine NFS E3 driver.makefile with conda version
\ No newline at end of file
## Tuesday, June 30 2020 : Combine NFS E3 driver.makefile with conda version
##
## Friday, July 3 2020 : Force all module names to be lowercase, to allow consistency between conda/nfs startup scripts.
\ No newline at end of file
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