diff --git a/Makefile b/Makefile index 97b9487b5abf7b457a922f469bc8a36ca0038c3c..a8c1e0574582a8bf06276f2339ad98864961a7c6 100644 --- a/Makefile +++ b/Makefile @@ -24,9 +24,9 @@ build-dep: phony @# To achieve this, we create a fake opam package that has our build-dependencies as @# dependencies, but does not actually install anything. mkdir -p build-dep + # Create the build-dep package, add the pin and (re)install it. @sed <opam 's/^\(build\|install\|remove\):.*/\1: []/; s/^name: *"\(.*\)" */name: "\1-builddep"/' > build-dep/opam @fgrep builddep build-dep/opam >/dev/null || (echo "sed failed to fix the package name" && exit 1) # sanity check - # Compute the package name, add the pin and (re)install it. @# Reinstallation is needed in case the pin already exists, but the builddep package changed. @BUILD_DEP_PACKAGE="$$(egrep "^name:" build-dep/opam | sed 's/^name: *"\(.*\)" */\1/')"; \ opam pin add "$$BUILD_DEP_PACKAGE" "$$(pwd)/build-dep" -k path $(OPAMFLAGS) && \