Submitted by: Bruce Stephens <bruce.stephens@isode.com>

Translate path separators correctly for $fipsdir in util/mk1mf.pl
This commit is contained in:
Dr. Stephen Henson 2012-02-12 23:20:21 +00:00
parent bf493e8d62
commit 424ba8b588

View File

@ -59,7 +59,6 @@ while(<IN>) {
}
close(IN);
$fipsdir =~ tr/\//${o}/;
$debug = 1 if $mf_platform =~ /^debug-/;
die "Makefile is not the toplevel Makefile!\n" if $ssl_version eq "";
@ -234,6 +233,8 @@ else
$cflags.=' -DTERMIO';
}
$fipsdir =~ s/\//${o}/g;
$out_dir=(defined($VARS{'OUT'}))?$VARS{'OUT'}:$out_def.($debug?".dbg":"");
$tmp_dir=(defined($VARS{'TMP'}))?$VARS{'TMP'}:$tmp_def.($debug?".dbg":"");
$inc_dir=(defined($VARS{'INC'}))?$VARS{'INC'}:$inc_def;