diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2009-10-16 01:43:54 +0200 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2009-10-16 01:43:54 +0200 |
commit | 3477592385788232332b4df86f4bfc1ef75600b3 (patch) | |
tree | 90b0e9cc39ed68e874dff26393adf62971adf8d4 /Makefile.shared | |
parent | Fix for WIN32 and possibly other platforms which don't define in_port_t. (diff) | |
download | openssl-3477592385788232332b4df86f4bfc1ef75600b3.tar.xz openssl-3477592385788232332b4df86f4bfc1ef75600b3.zip |
Fixes to CROSS_COMPILE, don't override command line option from environment
Diffstat (limited to 'Makefile.shared')
-rw-r--r-- | Makefile.shared | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.shared b/Makefile.shared index e1e214a2a4..3569832f1b 100644 --- a/Makefile.shared +++ b/Makefile.shared @@ -281,7 +281,7 @@ link_a.cygwin: fi; \ dll_name=$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX; \ $(PERL) util/mkrc.pl $$dll_name | \ - $(CROSS_COMPILE_PREFIX)windres -o rc.o; \ + $(CROSS_COMPILE)windres -o rc.o; \ extras="$$extras rc.o"; \ ALLSYMSFLAGS='-Wl,--whole-archive'; \ NOALLSYMSFLAGS='-Wl,--no-whole-archive'; \ |