md5
md5 copied to clipboard
make install fail
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.