summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2023-03-25 18:59:34 +0000
committer Eric Hameleers <alien@slackware.com>2023-03-25 20:37:31 +0100
commitbfa2b909021fd5c03cff4eeebe84a6f2ba7f499c (patch)
tree4ed1af5c7d419c31aa96e631f456a5af3604b59a /source
parent837c3ac79589e49555409aed395652eff7725470 (diff)
downloadcurrent-bfa2b909021fd5c03cff4eeebe84a6f2ba7f499c.tar.gz
current-bfa2b909021fd5c03cff4eeebe84a6f2ba7f499c.tar.xz
Sat Mar 25 18:59:34 UTC 202320230325185934
l/netpbm-11.02.00-x86_64-1.txz: Upgraded. x/mesa-23.0.1-x86_64-1.txz: Upgraded. Properly apply/revert patches for the amber drivers. Thanks to lucabon.
Diffstat (limited to 'source')
-rwxr-xr-xsource/x/mesa/mesa-amber.build8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/x/mesa/mesa-amber.build b/source/x/mesa/mesa-amber.build
index 1c39b04e9..650dd8d8a 100755
--- a/source/x/mesa/mesa-amber.build
+++ b/source/x/mesa/mesa-amber.build
@@ -29,15 +29,15 @@ find . \
# Patches obtained by:
# git checkout origin/17.2
# git format-patch 93c2beafc0a7fa2f210b006d22aba61caa71f773 # 17.2.6 release
-if /bin/ls $CWD/patches/*.patch 1> /dev/null 2> /dev/null ; then
- for patch in $CWD/patches/*.patch ; do
+if /bin/ls $CWD/amber/patches/*.patch 1> /dev/null 2> /dev/null ; then
+ for patch in $CWD/amber/patches/*.patch ; do
patch -p1 --verbose < $patch || exit 1 ;
done
fi
# Revert these patches from git (and maybe elsewhere):
-if /bin/ls $CWD/patches-revert/*.patch 1> /dev/null 2> /dev/null ; then
- for patch in $CWD/patches-revert/*.patch ; do
+if /bin/ls $CWD/amber/patches-revert/*.patch 1> /dev/null 2> /dev/null ; then
+ for patch in $CWD/amber/patches-revert/*.patch ; do
patch -p1 -R --verbose < $patch || exit 1 ;
done
fi