Ralf Treinen pushed to branch master at Debian OCaml Maintainers / why3
Commits:
-
dbabf2ff
by Ralf Treinen at 2022-03-19T15:02:04+01:00
2 changed files:
Changes:
| 1 | +why3 (1.4.1-2) unstable; urgency=medium
|
|
| 2 | + |
|
| 3 | + * Fix compilation on bytecode architectures, on these architectures we
|
|
| 4 | + have to look for exported units in why3ide.cma.
|
|
| 5 | + |
|
| 6 | + -- Ralf Treinen <treinen@debian.org> Sat, 19 Mar 2022 15:01:40 +0100
|
|
| 7 | + |
|
| 1 | 8 | why3 (1.4.1-1) unstable; urgency=medium
|
| 2 | 9 | |
| 3 | 10 | * New upstream release.
|
| ... | ... | @@ -50,14 +50,10 @@ override_dh_compress: |
| 50 | 50 | ifneq ($(wildcard debian/why3/usr/lib/ocaml/why3/commands/why3ide.cmxs),)
|
| 51 | 51 | WHY3IDE_UNITS := $(shell ocamlobjinfo debian/why3/usr/lib/ocaml/why3/commands/why3ide.cmxs | sed -n 's/Name: //p' | xargs echo | tr ' ' ,)
|
| 52 | 52 | else
|
| 53 | - WHY3IDE_UNITS :=
|
|
| 53 | + WHY3IDE_UNITS := $(shell ocamlobjinfo debian/why3/usr/lib/ocaml/why3/commands/why3ide.cma | sed -n 's/Unit name: //p' | xargs echo | tr ' ' ,)
|
|
| 54 | 54 | endif
|
| 55 | 55 | |
| 56 | -ifneq ($(wildcard debian/why3/usr/lib/ocaml/why3/plugins/hypothesis_selection.cma ),)
|
|
| 57 | - WHY3HYPO_UNITS := $(shell ocamlobjinfo debian/why3/usr/lib/ocaml/why3/plugins/hypothesis_selection.cma | sed -n 's/Unit name: //p' | xargs echo | tr ' ' ,)
|
|
| 58 | -else
|
|
| 59 | - WHY3HYPO_UNITS :=
|
|
| 60 | -endif
|
|
| 56 | +WHY3HYPO_UNITS := $(shell ocamlobjinfo debian/why3/usr/lib/ocaml/why3/plugins/hypothesis_selection.cma | sed -n 's/Unit name: //p' | xargs echo | tr ' ' ,)
|
|
| 61 | 57 | |
| 62 | 58 | override_dh_ocaml:
|
| 63 | 59 | dh_ocaml --nodefined-map=why3:$(WHY3IDE_UNITS),$(WHY3HYPO_UNITS) |