Fix building linux-armv4 with --strict-warnings
[openssl.git] / util / dofile.pl
index 955224df7d46f2d0619bb13ece13be22c930d9e2..b0e20681ddb037bbe936ff913e7ab508799bf0d0 100644 (file)
@@ -99,9 +99,9 @@ package main;
 # This adds quotes (") around the given string, and escapes any $, @, \,
 # " and ' by prepending a \ to them.
 sub quotify1 {
-    my $s = my $orig = shift @_;
+    my $s = shift @_;
     $s =~ s/([\$\@\\"'])/\\$1/g;
-    $s ne $orig || $s =~ /\s/ ? '"'.$s.'"' : $s;
+    '"'.$s.'"';
 }
 
 # quotify_l LIST