Skip to content
Snippets Groups Projects
Commit 11c86a47 authored by Dirk Zimoch's avatar Dirk Zimoch
Browse files

fix for projects with the same name as a record

parent 8b2fa7cb
No related branches found
No related tags found
No related merge requests found
...@@ -777,10 +777,10 @@ EPICS_INCLUDES += -I$(EPICS_BASE_INCLUDE) -I$(EPICS_BASE_INCLUDE)/os/$(OS_CLASS) ...@@ -777,10 +777,10 @@ EPICS_INCLUDES += -I$(EPICS_BASE_INCLUDE) -I$(EPICS_BASE_INCLUDE)/os/$(OS_CLASS)
$(foreach file, ${SRCS} ${TEMPLS} ${SCR}, $(eval vpath $(notdir ${file}) ../$(dir ${file}))) $(foreach file, ${SRCS} ${TEMPLS} ${SCR}, $(eval vpath $(notdir ${file}) ../$(dir ${file})))
# Do not treat %.dbd the same way because it creates a circular dependency # Do not treat %.dbd the same way because it creates a circular dependency
# if a source dbd has the same name as the project dbd. Have to clear %.dbd. # if a source dbd has the same name as the project dbd. Have to clear %.dbd snd not use ../ path.
# But the %Record.h and menu%.h rules need to find their dbd files (example: asyn) # But the %Record.h and menu%.h rules need to find their dbd files (example: asyn)
vpath %.dbd vpath %.dbd
vpath %Record.dbd ${DBD_PATH} vpath %Record.dbd $(filter-out ../,${DBD_PATH})
vpath menu%.dbd ${DBD_PATH} vpath menu%.dbd ${DBD_PATH}
# find header files to install # find header files to install
......
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