aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaëtan Gilbert2019-05-07 14:56:51 +0200
committerGaëtan Gilbert2019-05-07 14:57:13 +0200
commit86fa401ceaa17bdf1d297808eff3f8c3792d2778 (patch)
treeff6a2903a7faeef04c7e8292225b51c70ee3c02a
parent403f8784706d54e5e91bf20e56b0bf8ea40f4df3 (diff)
Fix PLUGINSVO computation after ltac2 integration
Avoid looking at random installed packages in -local mode.
-rw-r--r--Makefile.vofiles2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.vofiles b/Makefile.vofiles
index e05822c889..5296ed43ff 100644
--- a/Makefile.vofiles
+++ b/Makefile.vofiles
@@ -13,7 +13,7 @@ endif
###########################################################################
THEORIESVO := $(patsubst %.v,%.$(VO),$(shell find theories -type f -name "*.v"))
-PLUGINSVO := $(patsubst %.v,%.$(VO),$(shell find plugins user-contrib -type f -name "*.v"))
+PLUGINSVO := $(patsubst %.v,%.$(VO),$(shell find plugins $(addprefix user-contrib/, $(USERCONTRIBDIRS)) -type f -name "*.v"))
ALLVO := $(THEORIESVO) $(PLUGINSVO)
VFILES := $(ALLVO:.$(VO)=.v)