The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / openssl / 005-Make-c_rehash-match-commands-starting-with-minus-inste.patch
1 From 079cae9d7628f16b9efdf5723d2bfae5bdc2ba4e Mon Sep 17 00:00:00 2001
2 From: Gustavo Zacarias <gustavo@zacarias.com.ar>
3 Date: Tue, 27 Jan 2015 18:27:32 -0300
4 Subject: [PATCH] Make c_rehash match commands starting with - (minus) instead
5  of minus in any starting position, otherwise a directory named a-b breaks it
6
7 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
8 ---
9  tools/c_rehash.in | 2 +-
10  1 file changed, 1 insertion(+), 1 deletion(-)
11
12 diff --git a/tools/c_rehash.in b/tools/c_rehash.in
13 index 887e927..1df2fab 100644
14 --- a/tools/c_rehash.in
15 +++ b/tools/c_rehash.in
16 @@ -15,7 +15,7 @@ my $symlink_exists=eval {symlink("",""); 1};
17  my $removelinks = 1;
18  
19  ##  Parse flags.
20 -while ( $ARGV[0] =~ '-.*' ) {
21 +while ( $ARGV[0] =~ '^-.*' ) {
22      my $flag = shift @ARGV;
23      last if ( $flag eq '--');
24      if ( $flag =~ /-old/) {
25 -- 
26 2.0.5
27