Download, install dependencies, run make, get these errors:
./LASTPASS-VERSION-GEN: line 2: $'\r': command not found
./LASTPASS-VERSION-GEN: line 5: $'\r': command not found
./LASTPASS-VERSION-GEN: line 8: $'\r': command not found
./LASTPASS-VERSION-GEN: line 11: $'\r': command not found
./LASTPASS-VERSION-GEN: line 17: syntax error near unexpected token `elif'
'/LASTPASS-VERSION-GEN: line 17: `elif test -d ${GIT_DIR:-.git} -o -f .git &&
And as a result, there's no version.h file. :(
The issue: windows-style CRLF's in the files.
Workaround: remove the CR's (be sure the file is still executable!), run make clean then make. (sed 's/\r//' is your friend :) )
Download, install dependencies, run make, get these errors:
And as a result, there's no version.h file. :(
The issue: windows-style CRLF's in the files.
Workaround: remove the CR's (be sure the file is still executable!), run make clean then make. (
sed 's/\r//'
is your friend :) )