yubikey-luks icon indicating copy to clipboard operation
yubikey-luks copied to clipboard

Makefile error: cannot copy a directory, 'DEBUILD', into itself

Open marrek-az opened this issue 2 years ago • 2 comments

The Makefile target "debianize" contains:

mkdir -p DEBUILD/${SRC_DIR}
cp -r * DEBUILD/${SRC_DIR}

This resuilts in an error on Ubuntu: cannot copy a directory, 'DEBUILD', into itself

Consider changing the cp to: cp -r ${ls |grep -v DEBUILD}

... or something that does that.

marrek-az avatar Oct 13 '22 20:10 marrek-az

I also have this issue

nealhead avatar Oct 21 '22 19:10 nealhead

For some reason the author did not include all of the build dependencies in the debian/control file.

devscripts is required to build.

M-Pepper avatar Nov 27 '22 17:11 M-Pepper