diff options
Diffstat (limited to 'src/lib/libcrypto/util/pl/BC-16.pl')
-rw-r--r-- | src/lib/libcrypto/util/pl/BC-16.pl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/libcrypto/util/pl/BC-16.pl b/src/lib/libcrypto/util/pl/BC-16.pl index 7c3fdb68f4..6c6df4fe0b 100644 --- a/src/lib/libcrypto/util/pl/BC-16.pl +++ b/src/lib/libcrypto/util/pl/BC-16.pl | |||
@@ -1,4 +1,4 @@ | |||
1 | #!/usr/bin/perl | 1 | #!/usr/local/bin/perl |
2 | # VCw16lib.pl - the file for Visual C++ 1.52b for windows, static libraries | 2 | # VCw16lib.pl - the file for Visual C++ 1.52b for windows, static libraries |
3 | # | 3 | # |
4 | 4 | ||
@@ -66,18 +66,18 @@ $asm='bcc -c -B -Tml'; | |||
66 | $afile='/o'; | 66 | $afile='/o'; |
67 | if ($no_asm) | 67 | if ($no_asm) |
68 | { | 68 | { |
69 | $bn_mulw_obj=''; | 69 | $bn_asm_obj=''; |
70 | $bn_mulw_src=''; | 70 | $bn_asm_src=''; |
71 | } | 71 | } |
72 | elsif ($asmbits == 32) | 72 | elsif ($asmbits == 32) |
73 | { | 73 | { |
74 | $bn_mulw_obj='crypto\bn\asm\x86w32.obj'; | 74 | $bn_asm_obj='crypto\bn\asm\x86w32.obj'; |
75 | $bn_mulw_src='crypto\bn\asm\x86w32.asm'; | 75 | $bn_asm_src='crypto\bn\asm\x86w32.asm'; |
76 | } | 76 | } |
77 | else | 77 | else |
78 | { | 78 | { |
79 | $bn_mulw_obj='crypto\bn\asm\x86w16.obj'; | 79 | $bn_asm_obj='crypto\bn\asm\x86w16.obj'; |
80 | $bn_mulw_src='crypto\bn\asm\x86w16.asm'; | 80 | $bn_asm_src='crypto\bn\asm\x86w16.asm'; |
81 | } | 81 | } |
82 | 82 | ||
83 | sub do_lib_rule | 83 | sub do_lib_rule |