From 7359b7e9fffeebb263c4efe0f770674d7e994b55 Mon Sep 17 00:00:00 2001 From: Pierre Boutillier Date: Sun, 27 May 2018 17:19:53 +0200 Subject: [PATCH] Mandatory . after find under MacOS --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index efff306fa..58a752d15 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ DEV ?= --dev -PACKAGES:=$(patsubst %.opam,%,$(notdir $(shell find -name *.opam))) +PACKAGES:=$(patsubst %.opam,%,$(notdir $(shell find . -name *.opam -print))) current_ocaml_version := $(shell ocamlc -version) include scripts/version.sh @@ -26,11 +26,11 @@ all: all.pkg: @jbuilder build ${DEV} \ - $(patsubst %.opam,%.install, $(shell find -name \*.opam)) + $(patsubst %.opam,%.install, $(shell find . -name \*.opam -print)) $(addsuffix .pkg,${PACKAGES}): %.pkg: @jbuilder build ${DEV} \ - $(patsubst %.opam,%.install, $(shell find -name $*.opam)) + $(patsubst %.opam,%.install, $(shell find . -name $*.opam -print)) $(addsuffix .test,${PACKAGES}): %.test: @jbuilder build ${DEV} \