summaryrefslogtreecommitdiff
path: root/libre/linux-libre
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2018-08-23 19:33:10 -0300
committerDavid P <megver83@parabola.nu>2018-08-23 19:33:35 -0300
commit89eea072e673e50daa832ef11587a165cd9deaeb (patch)
tree297412b16265d034395b59bac37da319338ed1db /libre/linux-libre
parentc99ed984e81f39ad8fa3aee14697d662c3063dcf (diff)
downloadabslibre-89eea072e673e50daa832ef11587a165cd9deaeb.tar.gz
abslibre-89eea072e673e50daa832ef11587a165cd9deaeb.tar.bz2
abslibre-89eea072e673e50daa832ef11587a165cd9deaeb.zip
linux-libre: use extramodules var instead of _extramodules in _package()
And use a specific subs for armv7h, and the normal one for all the rest Also use capital for some comments Signed-off-by: David P <megver83@parabola.nu>
Diffstat (limited to 'libre/linux-libre')
-rw-r--r--libre/linux-libre/PKGBUILD12
1 files changed, 6 insertions, 6 deletions
diff --git a/libre/linux-libre/PKGBUILD b/libre/linux-libre/PKGBUILD
index b5e0eb8ae..e7bd5522d 100644
--- a/libre/linux-libre/PKGBUILD
+++ b/libre/linux-libre/PKGBUILD
@@ -230,13 +230,13 @@ _package() {
s|/boot/vmlinuz-%PKGBASE%|$kernver|g
s|%PKGBASE%|$pkgbase|g
s|%KERNVER%|$kernver|g
- s|%EXTRAMODULES%|$_extramodules|g
+ s|%EXTRAMODULES%|$extramodules|g
"
- elif [ "$CARCH" = "x86_64" ] || [ "$CARCH" = "i686" ]; then
+ else
local _subst="
s|%PKGBASE%|$pkgbase|g
s|%KERNVER%|$kernver|g
- s|%EXTRAMODULES%|$_extramodules|g
+ s|%EXTRAMODULES%|$extramodules|g
"
fi
@@ -315,9 +315,9 @@ _package-headers() {
msg2 "Removing documentation..."
rm -r "$builddir/Documentation"
- # parabola changes
+ # Parabola changes
#
- # since we don't want to diverge too much from arch's pkgbuild, we'll
+ # since we don't want to diverge too much from Arch's PKGBUILD, we'll
# start marking our changes as such
if [ "$CARCH" = "armv7h" ]; then
for i in dove exynos omap2; do
@@ -329,7 +329,7 @@ _package-headers() {
cp -a arch/$KARCH/plat-$i/include "$pkgdir/usr/lib/modules/$kernver/build/arch/$KARCH/plat-$i/"
done
fi
- # end of parabola changes
+ # end of Parabola changes
msg2 "Removing broken symlinks..."
find -L "$builddir" -type l -printf 'Removing %P\n' -delete