This commit is contained in:
swrup 2025-11-11 02:07:51 +01:00
parent aa2ff7b2f0
commit 2f3113f55d
11742 changed files with 1223940 additions and 0 deletions

View file

@ -0,0 +1,9 @@
(library
(name pkg1)
(modules pkg1)
(public_name pkg1))
(library
(name pkg2)
(modules pkg2)
(public_name pkg2))

View file

@ -0,0 +1 @@
(lang dune 1.1)

View file

@ -0,0 +1,10 @@
Issue #4814:
When multiple packages are present, `dune build -p PKG` and `dune install -p
PKG` should be able to build and install only that package, instead of all.
$ dune build -p pkg1
This is now fixed, although we should really just not allow -p on $ dune
install
$ dune install -p pkg1 --dry-run --prefix _install