~jbicha/firefox/update-dependencies

« back to all changes in this revision

Viewing changes to debian/patches/dont-treat-tilde-as-special.patch

  • Committer: Rico Tzschichholz
  • Date: 2017-10-10 13:25:09 UTC
  • Revision ID: ricotz@ubuntu.com-20171010132509-f3ec1g57jwgs9g8e
* New upstream release from the beta channel (FIREFOX_57_0b7_BUILD1)
* Install watermark.svg from the onbording extension as symbolic icon
  - debian/firefox.install.in

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Index: firefox-58.0~b2+build1/python/mozbuild/mozbuild/shellutil.py
2
 
===================================================================
3
 
--- firefox-58.0~b2+build1.orig/python/mozbuild/mozbuild/shellutil.py
4
 
+++ firefox-58.0~b2+build1/python/mozbuild/mozbuild/shellutil.py
5
 
@@ -26,7 +26,7 @@
6
 
   whitespace=r'[\t\r\n ]+',
7
 
   quote=r'[\'"]',
8
 
   comment='#',
9
 
-  special=r'[<>&|`~(){}$;\*\?]',
10
 
+  special=r'[<>&|`(){}$;\*\?]',
11
 
   backslashed=r'\\[^\\]',
12
 
 )
13
 
 
14
 
@@ -41,7 +41,7 @@
15
 
 
16
 
 # This regexp contains the same characters as all those listed in
17
 
 # UNQUOTED_TOKENS_RE. Please keep in sync.
18
 
-SHELL_QUOTE_RE = re.compile(r'[\\\t\r\n \'\"#<>&|`~(){}$;\*\?]')
19
 
+SHELL_QUOTE_RE = re.compile(r'[\\\t\r\n \'\"#<>&|`(){}$;\*\?]')
20
 
 
21
 
 
22
 
 class MetaCharacterException(Exception):