[openssl-commits] [openssl] OpenSSL_1_0_2-stable update
Richard Levitte
levitte at openssl.org
Fri Jan 27 09:35:32 UTC 2017
The branch OpenSSL_1_0_2-stable has been updated
via 0d37bd8058fa7933b0b6d6c2042592bf9daa80d7 (commit)
from e93f7d9c9873e8e9538c0be0b0d3b6851344dd6d (commit)
- Log -----------------------------------------------------------------
commit 0d37bd8058fa7933b0b6d6c2042592bf9daa80d7
Author: Richard Levitte <levitte at openssl.org>
Date: Fri Jan 27 10:22:19 2017 +0100
Don't use the ! command
The ! command doesn't exist on all Unix family operating systems, so
don't use it.
Reviewed-by: Matt Caswell <matt at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2303)
-----------------------------------------------------------------------
Summary of changes:
util/domd | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/util/domd b/util/domd
index bc2a85f..5a92559 100755
--- a/util/domd
+++ b/util/domd
@@ -34,11 +34,11 @@ else
${PERL} $TOP/util/clean-depend.pl < Makefile > Makefile.new
RC=$?
fi
-if ! cmp -s Makefile.save Makefile.new; then
- mv Makefile.new Makefile
-else
+if cmp -s Makefile.save Makefile.new; then
mv Makefile.save Makefile
rm -f Makefile.new
+else
+ mv Makefile.new Makefile
fi
# unfake the presence of Kerberos
rm $TOP/krb5.h
More information about the openssl-commits
mailing list