You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In some builders, such as Ubuntu ones, the V variable is exported with "1" value (such as
enable verbose builds for many build systems)
This results in:
dh_auto_build
make -j4 "INSTALL=install --strip-program=true"
make[1]: Entering directory '/<<PKGBUILDDIR>>'
1cppo -V COQ:8.15.2 -V OCAML:4.13.1 -n -o _CoqProject _CoqProject.cppo
make[1]: 1cppo: No such file or directory
Fixes issue: #57
Hello, in Ubuntu builders, verbose mode is enabled by default with
export V=1
this breaks the build of your tool because it does
in Makefile, resulting in a call of something like
"1cppo" binary.
Please document the V variable, or remove it if possible (or use a better and longer name?)
thanks
The text was updated successfully, but these errors were encountered: