build: minor fixes.

This commit is contained in:
Alexandre Pujol 2023-11-19 21:04:58 +00:00
parent 8686cc458f
commit d64ef39bd1
No known key found for this signature in database
GPG Key ID: C5469996F0DF68EC
3 changed files with 6 additions and 3 deletions

View File

@ -22,7 +22,7 @@ main() {
dpkg)
dch --newversion="$VERSION-1" --urgency=medium --distribution=stable --controlmaint "Release $VERSION-1"
dpkg-buildpackage -b -d --no-sign
mv ../"${PKGNAME}_${VERSION}-1"_*.deb "$OUTPUT"
mv ../"${PKGNAME}_${VERSION}-1"_*.deb .
;;
rpm)

View File

@ -13,7 +13,10 @@ DISTRIBUTION="$(_lsb_release)"
cd "$HOME/Projects/apparmor.d"
case "$DISTRIBUTION" in
arch) make pkg ;;
debian | ubuntu | whonix) make dpkg ;;
debian | ubuntu | whonix)
make dpkg
sudo rm -rf debian/.debhelper/
;;
opensuse*) make rpm ;;
*) ;;
esac