diff options
| author | Gaëtan Gilbert | 2019-05-07 14:56:51 +0200 |
|---|---|---|
| committer | Gaëtan Gilbert | 2019-05-07 14:57:13 +0200 |
| commit | 86fa401ceaa17bdf1d297808eff3f8c3792d2778 (patch) | |
| tree | ff6a2903a7faeef04c7e8292225b51c70ee3c02a /Makefile.vofiles | |
| parent | 403f8784706d54e5e91bf20e56b0bf8ea40f4df3 (diff) | |
Fix PLUGINSVO computation after ltac2 integration
Avoid looking at random installed packages in -local mode.
Diffstat (limited to 'Makefile.vofiles')
| -rw-r--r-- | Makefile.vofiles | 2 |
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) |
