FIPSLD_CC and CC need to be quoted, probably in more than one Makefile
than this to be safe, but certainly this one to allow the build to
complete.

This is required because CC is cc -m64 -xcode=pic32 -w
make(1) will try to grok the CC arguments '-m64 -xcode=pic32 -w' after
assigning the initial 'cc' part.


openssl-0.9.8k/apps root# diff Makefile Makefile.orig
156c156
<         FIPSLD_CC=$(CC); CC=$(TOP)/fips/fipsld; export CC FIPSLD_CC; \
---
>         FIPSLD_CC="$(CC)"; CC=$(TOP)/fips/fipsld; export CC FIPSLD_CC; \
161c161
<               CC=$${CC} APPNAME=$(EXE) OBJECTS="$(PROGRAM).o $(E_OBJ)" \
---
>               CC="$${CC}" APPNAME=$(EXE) OBJECTS="$(PROGRAM).o $(E_OBJ)" \

______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       [email protected]
Automated List Manager                           [email protected]

Reply via email to