Skip to content

Commit

Permalink
[openssl] Improve patches
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkaratarakis committed Mar 20, 2017
1 parent 8dd90aa commit 951ea97
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ports/openssl/ConfigureIncludeQuotesFix.patch
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ diff --git a/Configure b/Configure
index c98107a..77ad9d3 100644
--- a/Configure
+++ b/Configure
@@ -970,7 +970,7 @@ PROCESS_ARGS:
@@ -972,7 +972,7 @@ PROCESS_ARGS:
}
elsif (/^--with-zlib-include=(.*)$/)
{
Expand Down
6 changes: 3 additions & 3 deletions ports/openssl/PerlScriptSpaceInPathFixes.patch
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ index eba6d58..5d971a2 100644
}
$arg =~ s|\\|/|g; # compensate for bug/feature in cygwin glob...
- foreach (glob $arg)
+ foreach (glob "\"$arg\"")
+ foreach (glob qq("$arg"))
{
push @filelist, $_;
}
diff --git a/util/mk1mf.pl b/util/mk1mf.pl
index 128a405..fd853da 100644
--- a/util/mk1mf.pl
+++ b/util/mk1mf.pl
@@ -427,7 +427,7 @@ EOF
@@ -428,7 +428,7 @@ EOF
{
$extra_install .= <<"EOF"
\$(MKDIR) \"\$(INSTALLTOP)${o}lib${o}engines\"
Expand All @@ -24,7 +24,7 @@ index 128a405..fd853da 100644
EOF
}
}
@@ -607,7 +607,7 @@ install: all
@@ -608,7 +608,7 @@ install: all
\$(MKDIR) \"\$(INSTALLTOP)${o}include${o}openssl\"
\$(MKDIR) \"\$(INSTALLTOP)${o}lib\"
\$(CP) \"\$(INCO_D)${o}*.\[ch\]\" \"\$(INSTALLTOP)${o}include${o}openssl\"
Expand Down

0 comments on commit 951ea97

Please sign in to comment.