running the following:

./config --prefix=$PREFIX --openssldir=$PREFIX
--install_prefix=$INSTALL_PREFIX \
&& make \
&& make test \
&& sudo mkdir -p ${INSTALL_PREFIX}${PREFIX} \
&& sudo chown root:sys ${INSTALL_PREFIX}${PREFIX} \
&& sudo chmod 755 ${INSTALL_PREFIX}${PREFIX} \
&& sudo make install

it fails during make install with the following:

making install in crypto/krb5...
installing fips...
making install in fips/sha1...
sh: syntax error at line 2: `;' unexpected
*** Error code 2
make: Fatal error: Command failed for target `install'
Current working directory /xxx/openssl-0.9.7e/fips/sha1
*** Error code 1
make: Fatal error: Command failed for target `install'
Current working directory /xxx/openssl-0.9.7e/fips
*** Error code 1
make: Fatal error: Command failed for target `install_sw'

interestingly enough, if i manually go into that Makefile and comment
out offending lines (see below), the same error will happen under
fips/dsa, fips/dh, fips/aes, etc.

install:
        @if test -n "$(EXHEADER)"; then \
          for i in $(EXHEADER) ; \
          do  \
            (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
            chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
          done; \
        fi


any ideas?

thanks.
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to