[openssl.org #3271] OpenSSL 1.0.2 Beta 1 Solaris 10 Sparc Shell error during make install

2014-09-09 Thread Rich Salz via RT
OpenSSL_1_0_2-stable e61c648 RT3271: Don't use if ! in shell lines
HEAD b999f66 RT3271: Don't use if ! in shell lines

Merge: 843921f b999f66
Author: Rich Salz rs...@openssl.org
Date: Tue Sep 9 17:06:40 2014 -0400

Merge branch 'master' of git.openssl.org:openssl

Previous commit was reviewed by Geoff, not Stephen:
Reviewed-by: Geoff Thorpe ge...@openssl.org

--
Rich Salz, OpenSSL dev team; rs...@openssl.org

__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   majord...@openssl.org


Re: [openssl.org #3271] OpenSSL 1.0.2 Beta 1 Solaris 10 Sparc Shell error during make install

2014-09-06 Thread Rainer Jung

Anyone? I created a pull request to make fixing easier:

https://github.com/openssl/openssl/pull/171

Thanks,

Rainer

Am 20.08.2014 um 20:46 schrieb Rainer Jung:

When trying to build 1.0.2 beta 2 on Solaris I noticed, that the fix for
#3271 was incomplete. The same problem happened in 3 Makefiles for beta1
but only one was fixed for beta2.

The two files still broken are engines/Makefile and
engines/ccgost/Makefile. The solution applied to the top Makefile
(flipping the if and else parts) applies here as well.

Am 28.02.2014 um 22:57 schrieb Andy Polyakov via RT:

Change
http://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b3ef742cbbc1c8bf0e33dca60f08c65031647b07

broke make install on Solaris. Error message:

/bin/sh: !: not found

The new syntax

-  if [ $(PLATFORM) != Cygwin ]; then \
+  if ! expr $(PLATFORM) : Cygwin /dev/null; then \

introduced to the Makefile doesn't work for /bin/sh on Solaris.


flipped condition in
http://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=cd077dab08769091ebff3c2a5cbb27ffdb8043a7.

thanks for report.


Regards,

Rainer

__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   majord...@openssl.org


RE: [openssl.org #3271] OpenSSL 1.0.2 Beta 1 Solaris 10 Sparc Shell error during make install

2014-09-06 Thread Salz, Rich
 Anyone?

This mail was sent one minute after your previous mail.  A little patience 
perhaps? :)


:��IϮ��r�m
(Z+�7�zZ)���1���x��hW^��^��%����jם.+-1�ځ��j:+v���h�

FW: [openssl.org #3271] OpenSSL 1.0.2 Beta 1 Solaris 10 Sparc Shell error during make install

2014-09-06 Thread Salz, Rich via RT
Fix isn't complete.  Adding this message

--  
Principal Security Engineer
Akamai Technologies, Cambridge MA
IM: rs...@jabber.me Twitter: RichSalz


-Original Message-
From: owner-openssl-...@openssl.org [mailto:owner-openssl-...@openssl.org] On 
Behalf Of Rainer Jung
Sent: Saturday, September 06, 2014 8:58 AM
To: openssl-dev@openssl.org
Subject: Re: [openssl.org #3271] OpenSSL 1.0.2 Beta 1 Solaris 10 Sparc Shell 
error during make install

Anyone? I created a pull request to make fixing easier:

https://github.com/openssl/openssl/pull/171

Thanks,

Rainer

Am 20.08.2014 um 20:46 schrieb Rainer Jung:
 When trying to build 1.0.2 beta 2 on Solaris I noticed, that the fix 
 for
 #3271 was incomplete. The same problem happened in 3 Makefiles for 
 beta1 but only one was fixed for beta2.

 The two files still broken are engines/Makefile and 
 engines/ccgost/Makefile. The solution applied to the top Makefile 
 (flipping the if and else parts) applies here as well.

 Am 28.02.2014 um 22:57 schrieb Andy Polyakov via RT:
 Change
 http://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b3ef742c
 bbc1c8bf0e33dca60f08c65031647b07

 broke make install on Solaris. Error message:

 /bin/sh: !: not found

 The new syntax

 -  if [ $(PLATFORM) != Cygwin ]; then \
 +  if ! expr $(PLATFORM) : Cygwin /dev/null; then \

 introduced to the Makefile doesn't work for /bin/sh on Solaris.

 flipped condition in
 http://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=cd077dab08769091ebff3c2a5cbb27ffdb8043a7.

 thanks for report.

 Regards,

 Rainer
__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   majord...@openssl.org

__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   majord...@openssl.org


Re: [openssl.org #3271] OpenSSL 1.0.2 Beta 1 Solaris 10 Sparc Shell error during make install

2014-08-20 Thread Rainer Jung
When trying to build 1.0.2 beta 2 on Solaris I noticed, that the fix for 
#3271 was incomplete. The same problem happened in 3 Makefiles for beta1 
but only one was fixed for beta2.


The two files still broken are engines/Makefile and 
engines/ccgost/Makefile. The solution applied to the top Makefile 
(flipping the if and else parts) applies here as well.


Am 28.02.2014 um 22:57 schrieb Andy Polyakov via RT:

Change
http://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b3ef742cbbc1c8bf0e33dca60f08c65031647b07
broke make install on Solaris. Error message:

/bin/sh: !: not found

The new syntax

-  if [ $(PLATFORM) != Cygwin ]; then \
+  if ! expr $(PLATFORM) : Cygwin /dev/null; then \

introduced to the Makefile doesn't work for /bin/sh on Solaris.


flipped condition in
http://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=cd077dab08769091ebff3c2a5cbb27ffdb8043a7.
thanks for report.


Regards,

Rainer

__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   majord...@openssl.org


[openssl.org #3271] OpenSSL 1.0.2 Beta 1 Solaris 10 Sparc Shell error during make install

2014-02-28 Thread Rainer Jung via RT
Change
http://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b3ef742cbbc1c8bf0e33dca60f08c65031647b07
broke make install on Solaris. Error message:

/bin/sh: !: not found

The new syntax

-  if [ $(PLATFORM) != Cygwin ]; then \
+  if ! expr $(PLATFORM) : Cygwin /dev/null; then \

introduced to the Makefile doesn't work for /bin/sh on Solaris.

Regards,

Rainer

__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   majord...@openssl.org


Re: [openssl.org #3271] OpenSSL 1.0.2 Beta 1 Solaris 10 Sparc Shell error during make install

2014-02-28 Thread Andy Polyakov via RT
 Change
 http://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b3ef742cbbc1c8bf0e33dca60f08c65031647b07
 broke make install on Solaris. Error message:
 
 /bin/sh: !: not found
 
 The new syntax
 
 -  if [ $(PLATFORM) != Cygwin ]; then \
 +  if ! expr $(PLATFORM) : Cygwin /dev/null; then \
 
 introduced to the Makefile doesn't work for /bin/sh on Solaris.

flipped condition in 
http://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=cd077dab08769091ebff3c2a5cbb27ffdb8043a7.
 
thanks for report.


__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   majord...@openssl.org