| Anonymous | Login | Signup for a new account | 11-10-2008 10:51 PST |
| Main | My View | View Issues | Change Log | Docs |
| Viewing Issue Simple Details [ Jump to Notes ] | [ View Advanced ] [ Issue History ] [ Print ] | ||||||||
| ID | Category | Severity | Reproducibility | Date Submitted | Last Update | ||||
| 0000495 | [buildroot] Architecture Specific | minor | always | 10-20-05 17:26 | 02-12-07 05:49 | ||||
| Reporter | noah | View Status | public | ||||||
| Assigned To | buildroot | ||||||||
| Priority | normal | Resolution | fixed | ||||||
| Status | closed | Product Version | 0.9.27 | ||||||
| Summary | 0000495: openssl build fails for Target Architecture i386 Variant i386 | ||||||||
| Description |
The openssl.mk file sets OPENSSL_TARGET_ARCH to i386-i386, but this wrong. This is a special case. It should be set to just i386. The following patch fixes the problem, diff -u openssl.mk.original openssl.mk --- openssl.mk.original 2005-10-20 16:46:28.000000000 -0700 +++ openssl.mk 2005-10-20 17:17:12.569581608 -0700 @@ -14,8 +14,12 @@ ifeq ($(ARCH),i686) OPENSSL_TARGET_ARCH:=i386-i686/cmov else +ifeq ($(ARCH),i386) +OPENSSL_TARGET_ARCH:=i386 +else OPENSSL_TARGET_ARCH:=i386-$(ARCH) endif +endif else OPENSSL_TARGET_ARCH:=$(ARCH) endif |
||||||||
| Additional Information | |||||||||
| Attached Files |
|
||||||||
|
|
|||||||||
| Copyright © 2000 - 2006 Mantis Group |