mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
core/linux-raspberrypi: fix "linux=${pkgver}" in pkginfo
Using variables within '' was never a good idea :) raspberrypi ~ # pacman -Qi linux-raspberrypi [...] Provides : kernel26-raspberrypi linux=${pkgver} raspberrypi ~ # pacman -Qi linux-headers-raspberrypi [...] Provides : kernel26-headers linux-headers=${pkgver}
This commit is contained in:
parent
00c7bd6fb9
commit
f7f3adcfd7
1 changed files with 2 additions and 2 deletions
|
@ -90,7 +90,7 @@ package_linux-raspberrypi() {
|
|||
pkgdesc="The Linux Kernel and modules for Raspberry Pi"
|
||||
depends=('coreutils' 'linux-firmware' 'module-init-tools>=3.16' 'mkinitcpio>=0.7')
|
||||
optdepends=('crda: to set the correct wireless channels of your country')
|
||||
provides=('kernel26-raspberrypi' 'linux=${pkgver}')
|
||||
provides=('kernel26-raspberrypi' "linux=${pkgver}")
|
||||
conflicts=('kernel26' 'linux')
|
||||
replaces=('kernel26')
|
||||
backup=("etc/mkinitcpio.d/${pkgname}.preset")
|
||||
|
@ -139,7 +139,7 @@ package_linux-raspberrypi() {
|
|||
|
||||
package_linux-headers-raspberrypi() {
|
||||
pkgdesc="Header files and scripts for building modules for linux kernel for Raspberry Pi"
|
||||
provides=('kernel26-headers' 'linux-headers=${pkgver}')
|
||||
provides=('kernel26-headers' "linux-headers=${pkgver}")
|
||||
conflicts=('kernel26-headers')
|
||||
replaces=('kernel26-headers')
|
||||
|
||||
|
|
Loading…
Reference in a new issue