From 26d369c0427cf2e49e610a2024152bf5b9caf902 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Fri, 6 Apr 2018 11:03:36 -0500 Subject: [PATCH] Add missing dependency, pdbApp must follow configure The pdbApp/Makefile needs $(EPICS_QSRV_ABI_MAJOR_VERSION) and $(EPICS_QSRV_ABI_MINOR_VERSION), which will only be set if the Makefile is parsed after configure/Makefile has installed the CONFIG_QSRV_VERSION file. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 5cf947c..aa56547 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,9 @@ DIRS += configure DIRS += $(wildcard *App) DIRS += $(wildcard iocBoot) +# pdbApp depends on configure for CONFIG_QSRV_VERSION +pdbApp_DEPEND_DIRS = configure + # iocBoot depends on all *App dirs iocBoot_DEPEND_DIRS += $(filter %App,$(DIRS)) testApp_DEPEND_DIRS += p2pApp pdbApp