summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorxiota2024-02-29 06:32:43 +0000
committerxiota2024-02-29 06:33:41 +0000
commit90b12aeb2925eb5889bafed9909dca3a8b185f80 (patch)
treef2c8b34632aee9e9e70c430b71c69e07a0c11373
parent10ced242ad2c01677c43d769c3b27e7990e17dcb (diff)
downloadaur-90b12aeb2925eb5889bafed9909dca3a8b185f80.tar.gz
fix dh_strip_nondeterminism install
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0941bcd50db8..1a4edcf8a49a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = debhelper
pkgdesc = A collection of programs that can be used in a debian/rules file to automate common tasks
pkgver = 13.14.1
- pkgrel = 1
+ pkgrel = 2
url = https://salsa.debian.org/debian/debhelper
arch = any
license = GPL-2.0-or-later
diff --git a/PKGBUILD b/PKGBUILD
index 67c35c0e19b0..e41342516cdc 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -17,7 +17,7 @@ unset _pkgtype
_pkgname="debhelper"
pkgname="$_pkgname${_pkgtype:-}"
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"
url="https://salsa.debian.org/debian/debhelper"
license=('GPL-2.0-or-later')
@@ -95,7 +95,7 @@ package() {
cd "$_pkgsrc"
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: