summaryrefslogtreecommitdiffstats
path: root/source/x/mesa/mesa-amber.build
diff options
context:
space:
mode:
Diffstat (limited to 'source/x/mesa/mesa-amber.build')
-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