diff options
author | Jason Gross <jasongross9@gmail.com> | 2017-06-28 12:26:40 -0400 |
---|---|---|
committer | Jason Gross <jgross@mit.edu> | 2017-06-30 13:17:43 -0400 |
commit | 2a95acfe2892d982cda1fcd7c7a921c8e25f16d4 (patch) | |
tree | 9c75aad8931aaaec2b4b384505acae1d5ae851cb /tools | |
parent | 05db464aefe90ff69ea69d5ce7c4775c6a7f218f (diff) |
Also quote $(COQLIB)/grammar
In case COQLIB has backslashes, as it does on Windows, or spaces
Diffstat (limited to 'tools')
-rw-r--r-- | tools/CoqMakefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/CoqMakefile.in b/tools/CoqMakefile.in index 4f967e633..3027bf92d 100644 --- a/tools/CoqMakefile.in +++ b/tools/CoqMakefile.in @@ -150,7 +150,7 @@ else CAMLP4EXTEND= endif -PP:=-pp '$(CAMLP4O) -I $(CAMLLIB) -I $(COQLIB)/grammar compat5.cmo $(CAMLP4EXTEND) $(GRAMMARS) $(CAMLP4OPTIONS) -impl' +PP:=-pp '$(CAMLP4O) -I $(CAMLLIB) -I "$(COQLIB)/grammar" compat5.cmo $(CAMLP4EXTEND) $(GRAMMARS) $(CAMLP4OPTIONS) -impl' COQLIBINSTALL = $(COQLIB)user-contrib COQDOCINSTALL = $(DOCDIR)user-contrib |