summaryrefslogtreecommitdiff
path: root/binutils/patches/157_ar_scripts_with_tilde.patch
blob: 0d3427e29787da75b1ff47e7f34e60a913306da5 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- a/binutils/arlex.l
+++ b/binutils/arlex.l
@@ -77,7 +77,7 @@
 "("             { return '('; }
 ")"             { return ')'; }
 ","             { return ','; }
-[A-Za-z0-9/\\$:.\-\_]+  { 	
+[A-Za-z0-9/\\$:.\-\_~]+  { 	
 		yylval.name =  xstrdup (yytext);
 		return FILENAME;
 		}