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