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
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}
cp -r ${ls |grep -v DEBUILD}
... or something that does that.
The text was updated successfully, but these errors were encountered:
I also have this issue
Sorry, something went wrong.
For some reason the author did not include all of the build dependencies in the debian/control file.
devscripts is required to build.
devscripts
No branches or pull requests
The Makefile target "debianize" contains:
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.
The text was updated successfully, but these errors were encountered: