diff options
| author | Enrico Tassi | 2019-12-29 17:02:20 +0100 |
|---|---|---|
| committer | Enrico Tassi | 2019-12-29 17:02:20 +0100 |
| commit | 99b064d1079f62bdabfd7374ae77246828e8b08d (patch) | |
| tree | 9909038d2deeee5c10f00f7e9c2c9a09cb3adef9 | |
| parent | 596515b46d08b470c57eb247e1efdd385acf4f3d (diff) | |
| parent | 5d143285677704a406b059aba392a5cf304c67d6 (diff) | |
Merge PR #10977: Remove the incorrect extra space in Makefile.vofiles
Reviewed-by: gares
| -rw-r--r-- | Makefile.vofiles | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.vofiles b/Makefile.vofiles index b6e0cd0a08..fe7ca7c36f 100644 --- a/Makefile.vofiles +++ b/Makefile.vofiles @@ -31,9 +31,9 @@ ALLMODS:=$(call vo_to_mod,$(ALLVO:.$(VO)=.vo)) # Converting a stdlib filename into native compiler filenames # Used for install targets -vo_to_cm = $(foreach vo,$(1),$(dir $(vo)).coq-native/$(subst /,_,$(patsubst user-contrib/%, N%, $(patsubst theories/%,NCoq_%,$(patsubst plugins/%,NCoq_%,$(vo:.$(VO)=.cm*)))))) +vo_to_cm = $(foreach vo,$(1),$(dir $(vo)).coq-native/$(subst /,_,$(patsubst user-contrib/%,N%, $(patsubst theories/%,NCoq_%,$(patsubst plugins/%,NCoq_%,$(vo:.$(VO)=.cm*)))))) -vo_to_obj = $(foreach vo,$(1),$(dir $(vo)).coq-native/$(subst /,_,$(patsubst user-contrib/%, N%, $(patsubst theories/%,NCoq_%,$(patsubst plugins/%,NCoq_%,$(vo:.$(VO)=.o)))))) +vo_to_obj = $(foreach vo,$(1),$(dir $(vo)).coq-native/$(subst /,_,$(patsubst user-contrib/%,N%, $(patsubst theories/%,NCoq_%,$(patsubst plugins/%,NCoq_%,$(vo:.$(VO)=.o)))))) ifdef QUICK GLOBFILES:= |
