Blame build_debian.sh

Packit Service 336c1b
#!/bin/sh
Packit Service 336c1b
Packit Service 336c1b
echo "chmod +x debian/rules"
Packit Service 336c1b
chmod +x debian/rules
Packit Service 336c1b
Packit Service 336c1b
# in some environments the '-rfakeroot' can cause a failure (e.g. when
Packit Service 336c1b
# building as root). If so, remove that argument from the following:
Packit Service 336c1b
echo "dpkg-buildpackage -b -rfakeroot"
Packit Service 336c1b
dpkg-buildpackage -b -rfakeroot
Packit Service 336c1b
Packit Service 336c1b
# If the above succeeds then the ".deb" binary package is placed in the
Packit Service 336c1b
# parent directory.