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
When dpkg-buildpackage is called in a completely clean build tree the following happens:
dpkg-buildpackage
# Move console scripts to /usr/bin mkdir -p debian/hades/usr/bin mv debian/hades/usr/lib/hades/bin/hades-* debian/hades/usr/bin make[1]: Leaving directory '/build/hades' dh_install -O--buildsystem=dh_virtualenv dh_install: Cannot find (any matches for) "locales/de/LC_MESSAGES/hades.mo" (tried in "." and "debian/tmp") dh_install: hades missing files: locales/de/LC_MESSAGES/hades.mo dh_install: missing files, aborting
A manual python3 setup.py build before running dpkg-buildpackage is a workaround.
python3 setup.py build
The text was updated successfully, but these errors were encountered:
I want to add, that this issue only occurs when dh-virtualenv ist used. The following works fine:
dh-virtualenv
builder@01234567890a:~/hades$ USE_DH_VIRTUALENV=0 dpkg-buildpackage -uc -us -b
Sorry, something went wrong.
Build without dh_virtualenv by default
daa1e54
The plain package without a virtualenv works fine, so let's switch defaults. See also #60.
e48ec4c
69ed977
sebschrader
No branches or pull requests
When
dpkg-buildpackage
is called in a completely clean build tree the following happens:A manual
python3 setup.py build
before runningdpkg-buildpackage
is a workaround.The text was updated successfully, but these errors were encountered: