aboutsummaryrefslogtreecommitdiffstats
path: root/util/mk1mf.pl
diff options
context:
space:
mode:
authorBen Laurie <ben@links.org>2013-04-01 18:22:58 +0100
committerBen Laurie <ben@links.org>2013-04-06 15:13:11 +0100
commit3675fb882c9f112d5e28c4d50aa4909fe567727b (patch)
tree7e2f11c4af8cfb152a929fbbe5f0172ce84e7346 /util/mk1mf.pl
parent3b4d86bff5a8911a061a8a6e5ec1d21b1f651c18 (diff)
downloadopenssl-3675fb882c9f112d5e28c4d50aa4909fe567727b.tar.gz
More progress towards working tests.
Diffstat (limited to 'util/mk1mf.pl')
-rwxr-xr-xutil/mk1mf.pl6
1 files changed, 4 insertions, 2 deletions
diff --git a/util/mk1mf.pl b/util/mk1mf.pl
index 7860375c56..fb13f2e11f 100755
--- a/util/mk1mf.pl
+++ b/util/mk1mf.pl
@@ -610,6 +610,7 @@ EOF
}
$defs= <<"EOF";
+# N.B. You MUST use -j on FreeBSD.
# This makefile has been automatically generated from the OpenSSL distribution.
# This single makefile will build the complete OpenSSL distribution and
# by default leave the 'intertesting' output files in .${o}out and the stuff
@@ -754,7 +755,7 @@ $banner
# This needs to be invoked once, when the makefile is first constructed, or
# after cleaning.
-init: \$(TMP_D) \$(LIB_D) headers
+init: \$(TMP_D) \$(LIB_D) \$(INC_D) \$(INCO_D) \$(BIN_D) \$(TEST_D) headers
headers: \$(HEADER) \$(EXHEADER)
@@ -1371,7 +1372,8 @@ sub do_copy_rule
if ($n =~ /bss_file/)
{ $pp=".c"; }
else { $pp=$p; }
- $ret.="$to${o}$n$pp: \$(SRC_D)$o$_$pp $to\n\t\$(PERL) \$(SRC_D)${o}util${o}copy-if-different.pl \"\$(SRC_D)$o$_$pp\" \"$to${o}$n$pp\"\n\n";
+# $ret.="$to${o}$n$pp: \$(SRC_D)$o$_$pp\n\t\$(PERL) \$(SRC_D)${o}util${o}copy-if-different.pl \"\$(SRC_D)$o$_$pp\" \"$to${o}$n$pp\"\n\n";
+ $ret.="$to${o}$n$pp: \$(SRC_D)$o$_$pp\n\t\$(CP) \"\$(SRC_D)$o$_$pp\" \"$to${o}$n$pp\"\n\n";
}
return($ret);
}