Skip to content

Commit

Permalink
Avoid call of opam when we install esperanto-cosmopolitan via opam
Browse files Browse the repository at this point in the history
  • Loading branch information
dinosaure committed Dec 24, 2023
1 parent 3d29894 commit b4ecdca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions toolchain/GNUmakefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export TOPDIR := $(abspath .)

EXTRACT=opam exec -- dune exec --root=${TOPDIR} --display=verbose ./extract.exe --
INSTALL=opam exec -- dune exec --root=${TOPDIR} --display=verbose ./install.exe --
EXTRACT=dune exec --root=${TOPDIR} --display=verbose ./extract.exe --
INSTALL=dune exec --root=${TOPDIR} --display=verbose ./install.exe --
DISTRIBUTION=cosmocc.zip
DIGEST=cosmocc.digest
DST=cosmo
Expand Down Expand Up @@ -29,7 +29,7 @@ install: ${COSMOCC} ${OBJS}
@${INSTALL} -d ${DST} --digest ${DIGEST} --prefix "${PREFIX}"

clean:
opam exec -- dune clean
dune clean
rm -rf ${DST}
rm -rf ${OBJS}

Expand Down

0 comments on commit b4ecdca

Please sign in to comment.