summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authordreieck2023-02-22 10:30:38 +0100
committerdreieck2023-02-22 10:30:38 +0100
commit683578018387ae62d656a9b59a34911fed791f41 (patch)
treeecdc3598e2533be68db87ff0aaace112d2aced9a /PKGBUILD
parent19d422b0b2d634c6832eef25dcb8d9fd1d48e0d9 (diff)
downloadaur-683578018387ae62d656a9b59a34911fed791f41.tar.gz
Disabled unneeded `make canny` in `prepare()`, since it breaks installation if the `uname -r`'s kernel header files are currently not present (e.g. due to an update without reboot).
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD6
1 files changed, 3 insertions, 3 deletions
diff --git a/PKGBUILD b/PKGBUILD
index ae02e80db2e3..e886f83fc03b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -14,7 +14,7 @@ groups=(
)
pkgver=0.3.2.rev44.r52.20230220.f0f42bd
_phcver="$(awk -F. '{print $1"."$2"."$3}' <<<"${pkgver}")"
-pkgrel=2
+pkgrel=3
pkgdesc="Frequency driver for Intel CPUs with undervolting feature. DKMS-based kernel module, stable branch, latest git checkout."
url="https://gitlab.com/linux-phc/phc-intel"
arch=('any')
@@ -51,8 +51,8 @@ sha256sums=(
prepare() {
cd "${srcdir}/${_pkgbase}"
- ## Switch to stable branch:
- make canny
+ # ## Switch to stable branch -- not needed, since stable is the default, and when doing it here then it would fail if the currently running kernel headers are not installed (e.g. due to a recent upgrade):
+ # make canny
## Generate GIT log
git log > "${srcdir}/git.log"