fix dh_strip_nondeterminism install

This commit is contained in:
xiota
2024-02-29 06:32:43 +00:00
parent 10ced242ad
commit 90b12aeb29
2 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
pkgbase = debhelper pkgbase = debhelper
pkgdesc = A collection of programs that can be used in a debian/rules file to automate common tasks pkgdesc = A collection of programs that can be used in a debian/rules file to automate common tasks
pkgver = 13.14.1 pkgver = 13.14.1
pkgrel = 1 pkgrel = 2
url = https://salsa.debian.org/debian/debhelper url = https://salsa.debian.org/debian/debhelper
arch = any arch = any
license = GPL-2.0-or-later license = GPL-2.0-or-later

View File

@@ -17,7 +17,7 @@ unset _pkgtype
_pkgname="debhelper" _pkgname="debhelper"
pkgname="$_pkgname${_pkgtype:-}" pkgname="$_pkgname${_pkgtype:-}"
pkgver=13.14.1 pkgver=13.14.1
pkgrel=1 pkgrel=2
pkgdesc="A collection of programs that can be used in a debian/rules file to automate common tasks" pkgdesc="A collection of programs that can be used in a debian/rules file to automate common tasks"
url="https://salsa.debian.org/debian/debhelper" url="https://salsa.debian.org/debian/debhelper"
license=('GPL-2.0-or-later') license=('GPL-2.0-or-later')
@@ -95,7 +95,7 @@ package() {
cd "$_pkgsrc" cd "$_pkgsrc"
make DESTDIR="$pkgdir" install make DESTDIR="$pkgdir" install
install -Dm755 "$srcdir/$_dh_strip_nondeterminism_script" -t "$pkgdir/usr/bin/dh_strip_nondeterminism" install -Dm755 "$srcdir/$_dh_strip_nondeterminism_script" "$pkgdir/usr/bin/dh_strip_nondeterminism"
} }
# vim:set ts=2 sw=2 et: # vim:set ts=2 sw=2 et: