Skip to content
New issue

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

make install fail #14

Open
thebodzio opened this issue May 24, 2021 · 0 comments
Open

make install fail #14

thebodzio opened this issue May 24, 2021 · 0 comments

Comments

@thebodzio
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant