We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d7c593 commit b9a5752Copy full SHA for b9a5752
eclass/sage-git-patch.eclass
@@ -73,7 +73,8 @@ sage-git-patch_patch() {
73
echo "Processing for ${tree}"
74
for patch in "${GIT_PRS[@]}"; do
75
# remove files with patchutils
76
- filterdiff -i "*/${tree}/*" "${DISTDIR}/sagemath_PR${patch}.patch" > \
+ # do not include a final "/" in the pattern to catch things like sage_docbuild or sage_setup.
77
+ filterdiff -i "*/${tree}*" "${DISTDIR}/sagemath_PR${patch}.patch" > \
78
"${T}/${patch}_proc.patch" \
79
|| die "patch for PR ${patch} not found"
80
eapply "${plevel}" "${T}/${patch}_proc.patch"
0 commit comments