summaryrefslogtreecommitdiffstats
path: root/icu
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2011-12-20 18:06:46 +0200
committerTor Lillqvist <tlillqvist@suse.com>2011-12-20 18:08:08 +0200
commit7d3c674a0444e7688178b00ae4675bb65c685798 (patch)
treec24d4262dffc8b2fb98aef9bfdcf6e67b893faa8 /icu
parentremove un-used code, and make a start at rampant vspace wasting (diff)
downloadcore-7d3c674a0444e7688178b00ae4675bb65c685798.tar.gz
core-7d3c674a0444e7688178b00ae4675bb65c685798.zip
Abandon attempt to use the debug CRT in a dbgutil build
Diffstat (limited to 'icu')
-rw-r--r--icu/createmak.pl12
1 files changed, 0 insertions, 12 deletions
diff --git a/icu/createmak.pl b/icu/createmak.pl
index 891c5e33a778..3786ec1d1069 100644
--- a/icu/createmak.pl
+++ b/icu/createmak.pl
@@ -364,12 +364,6 @@ sub createMakDepSection #01.04.2008 13:36
{
$line =~ s/CPP_PROJ=/CPPX_PROJ=/;
$line =~ s/-Za/-Ze/;
- if ( $nonpro )
- {
- # if non product link against debug libraries
- $line =~ s/-MD/-MDd/;
- $line =~ s/-MT/-MTd/;
- }
push @{$ref_make_file}, $line;
}
}
@@ -703,12 +697,6 @@ sub print_flags #18.04.2008 14:19
@template = @{$template_hash{$switch}};
foreach $line(@template)
{
- if ( $nonpro )
- {
- # if non product link against debug libraries
- $line =~ s/-MD/-MDd/;
- $line =~ s/-MT/-MTd/;
- }
print MAKFILE $line;
}
}