aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile10
-rw-r--r--contrib/interface/parse.ml2
2 files changed, 7 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 5442c8c527..09e859e908 100644
--- a/Makefile
+++ b/Makefile
@@ -712,11 +712,15 @@ clean::
rm -f bin/parser$(EXE) bin/coq-interface$(EXE) bin/coq-interface.opt$(EXE)
# install targets
-install-pcoq:: install-pcoq-binaries install-pcoq-manpages
+install-pcoq:: install-pcoq-binaries install-pcoq-files install-pcoq-manpages
install-pcoq-binaries::
$(MKDIR) $(FULLBINDIR)
- cp $(COQINTERFACE) $(FULLBINDIR)
+ cp $(COQINTERFACE) $(FULLBINDIR)
+
+install-pcoq-files::
+ $(MKDIR) $(FULLCOQLIB)/contrib/interface
+ cp $(INTERFACERC) $(FULLCOQLIB)/contrib/interface
PCOQMANPAGES=man/coq-interface.1 man/parser.1
@@ -1141,7 +1145,7 @@ archclean::
COQINSTALLPREFIX=
# Can be changed for a local installation (to make packages).
- # You must put a "/" at the end (Cygnus for win32 does not like "//").
+ # You must NOT put a "/" at the end (Cygnus for win32 does not like "//").
FULLBINDIR=$(COQINSTALLPREFIX)$(BINDIR)
FULLCOQLIB=$(COQINSTALLPREFIX)$(COQLIB)
diff --git a/contrib/interface/parse.ml b/contrib/interface/parse.ml
index eb574a4385..6a99aedc8c 100644
--- a/contrib/interface/parse.ml
+++ b/contrib/interface/parse.ml
@@ -443,8 +443,6 @@ Libobject.relax true;
begin
add_rec_path (Filename.concat coqdir "theories")
(Names.make_dirpath [Nameops.coq_root]);
- add_path (Filename.concat coqdir "tactics")
- (Names.make_dirpath [Nameops.coq_root]);
add_rec_path (Filename.concat coqdir "contrib")
(Names.make_dirpath [Nameops.coq_root])
end;