Skip to content
Snippets Groups Projects
Commit dbcad82b authored by Ralf Jung's avatar Ralf Jung
Browse files

reinstate opam 1.2 compatibility in a separate untested code path

parent f8c8e5cf
No related branches found
No related tags found
No related merge requests found
...@@ -30,7 +30,13 @@ build-dep: build-dep/opam phony ...@@ -30,7 +30,13 @@ build-dep: build-dep/opam phony
@# To achieve this, we create a fake opam package that has our build-dependencies as @# To achieve this, we create a fake opam package that has our build-dependencies as
@# dependencies, but does not actually install anything itself. @# dependencies, but does not actually install anything itself.
@echo "# Pinning build-dep package." && \ @echo "# Pinning build-dep package." && \
opam install $(OPAMFLAGS) build-dep/ if opam --version | grep "^1\." -q; then \
BUILD_DEP_PACKAGE="$$(egrep "^name:" build-dep/opam | sed 's/^name: *"\(.*\)" */\1/')" && \
opam pin add -k path $(OPAMFLAGS) "$$BUILD_DEP_PACKAGE".dev build-dep && \
opam reinstall $(OPAMFLAGS) "$$BUILD_DEP_PACKAGE"; \
else \
opam install $(OPAMFLAGS) build-dep/; \
fi
# Some files that do *not* need to be forwarded to Makefile.coq # Some files that do *not* need to be forwarded to Makefile.coq
Makefile: ; Makefile: ;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment