md5 icon indicating copy to clipboard operation
md5 copied to clipboard

make install fail

Open thebodzio opened this issue 4 years ago • 0 comments

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.

thebodzio avatar May 24 '21 18:05 thebodzio