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
echo "package lua51\n" > lua_defs.go
in the lua51/Makefile does not work correctly in Debian. It puts the literal \n instead of the new line. One work around for this would be to use a semicolon instead of a new line which should make the compiler know what's meant. A perhaps longer work around would be to try to figure out what the system's echo command supports and how it supports it and have system specific echo's... I'd generally say that's a bad idea though, and the semicolon should work just fine.
The text was updated successfully, but these errors were encountered:
echo "package lua51\n" > lua_defs.go
in the lua51/Makefile does not work correctly in Debian. It puts the literal \n instead of the new line. One work around for this would be to use a semicolon instead of a new line which should make the compiler know what's meant. A perhaps longer work around would be to try to figure out what the system's echo command supports and how it supports it and have system specific echo's... I'd generally say that's a bad idea though, and the semicolon should work just fine.
The text was updated successfully, but these errors were encountered: