summarylogtreecommitdiffstats
path: root/tllocalmgr-fix-texlive-local-match.patch
diff options
context:
space:
mode:
Diffstat (limited to 'tllocalmgr-fix-texlive-local-match.patch')
-rw-r--r--tllocalmgr-fix-texlive-local-match.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/tllocalmgr-fix-texlive-local-match.patch b/tllocalmgr-fix-texlive-local-match.patch
new file mode 100644
index 000000000000..d6f707510ad4
--- /dev/null
+++ b/tllocalmgr-fix-texlive-local-match.patch
@@ -0,0 +1,13 @@
+diff --git a/tllocalmgr b/tllocalmgr
+index b947ed2..b8d75dc 100755
+--- a/tllocalmgr
++++ b/tllocalmgr
+@@ -140,7 +140,7 @@ chomp(my @pacman = `pacman -Qs ^texlive- | egrep ^local | cut -d'/' -f2`);
+ my @localpacman = grep { /^texlive-local-/ } @pacman;
+ # To have the standard collections we get rid of
+ # texlive-local-<pkg> and texlive-localmanager:
+-my @collpacman = grep { !/^texlive-local/ } @pacman;
++my @collpacman = grep { !/^(texlive-local|tllocalmgr)/ } @pacman;
+
+ if (@localpacman) {
+ foreach (@localpacman) {