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:
TamCore 2012-07-25 20:13:17 +02:00
parent 00c7bd6fb9
commit f7f3adcfd7

View file

@ -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')