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
It looks like line 57 of src/Makefile on version 0.6 calls perl to do a substitution in src/luaconf.h. However, the README.md doesn't document any dependency on perl.
I found this by using nix to build howl in a "pure" environment with:
# fails with perl: Command not found
nix-shell --pure -p wget pkgconfig gtk3 --run "make"
# adding perl to the list of packages works
nix-shell --pure -p wget pkgconfig gtk3 perl --run "make"
The text was updated successfully, but these errors were encountered:
It looks like line 57 of
src/Makefile
on version0.6
callsperl
to do a substitution insrc/luaconf.h
. However, theREADME.md
doesn't document any dependency on perl.I found this by using nix to build howl in a "pure" environment with:
The text was updated successfully, but these errors were encountered: