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
I just checked this project out and executed make install. It gave me errors:
$ make install
mkdir -p "/usr/local/lib/vernacular"
mkdir -p "/usr/local/bin"forfilein Mono.Cecil.dll Mono.Cecil.Mdb.dll Mono.Cecil.Pdb.dll Vernacular.Catalog.dll Vernacular.Catalog.dll.mdb Vernacular.Potato.dll Vernacular.Potato.dll.mdb Vernacular.exe Vernacular.exe.mdb;do \
install -m 0755 "Vernacular.Tool/bin/Debug/$file""/usr/local/lib/vernacular"; \
done
install: Vernacular.Tool/bin/Debug/Mono.Cecil.dll: No such file or directory
install: Vernacular.Tool/bin/Debug/Mono.Cecil.Mdb.dll: No such file or directory
install: Vernacular.Tool/bin/Debug/Mono.Cecil.Pdb.dll: No such file or directory
install: Vernacular.Tool/bin/Debug/Vernacular.Catalog.dll: No such file or directory
install: Vernacular.Tool/bin/Debug/Vernacular.Catalog.dll.mdb: No such file or directory
install: Vernacular.Tool/bin/Debug/Vernacular.Potato.dll: No such file or directory
install: Vernacular.Tool/bin/Debug/Vernacular.Potato.dll.mdb: No such file or directory
install: Vernacular.Tool/bin/Debug/Vernacular.exe: No such file or directory
install: Vernacular.Tool/bin/Debug/Vernacular.exe.mdb: No such file or directory
make: *** [install] Error 71
First executing make (which is basically make vernacular) and then executing make install made everything work as expected.
Maybe make install should depend on make vernacular in the Makefile?
The text was updated successfully, but these errors were encountered:
Hey,
I just checked this project out and executed
make install
. It gave me errors:First executing
make
(which is basicallymake vernacular
) and then executingmake install
made everything work as expected.Maybe
make install
should depend onmake vernacular
in theMakefile
?The text was updated successfully, but these errors were encountered: