We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I think lines 25 and 26 in Makefile should be swapped:
install: src/$(MD5_LIBNAME) src/$(DES56_LIBNAME) cp src/$(DES56_LIBNAME) $(LUA_LIBDIR) mkdir -p $(LUA_LIBDIR)/md5 cp src/$(MD5_LIBNAME) $(LUA_LIBDIR)/md5/ mkdir -p $(LUA_DIR) cp $(MD5_LUAS) $(LUA_DIR)
Otherwise copy operation for $(DES56_LIBNAME) may attempt to place it in a non-existent directory causing the whole make install to fail.
$(DES56_LIBNAME)
make install
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I think lines 25 and 26 in Makefile should be swapped:
Otherwise copy operation for
$(DES56_LIBNAME)
may attempt to place it in a non-existent directory causing the wholemake install
to fail.The text was updated successfully, but these errors were encountered: