Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make script more portable by changing == to = (#1871)
TYPE: bug fix KEYWORDS: configure script, use '=' vs '==' SOURCE: Chris Bridgham DESCRIPTION OF CHANGES: Problem: The newly added test in v4.5 in configure script could fail due to less portable use '==' as in ``` if [ $rpc_type == "rpc" ]; then ``` Solution: Change the above to ``` if [ $rpc_type = "rpc" ]; then ``` ISSUE: For use when this PR closes an issue. Fixes #1869 LIST OF MODIFIED FILES: M configure TESTS CONDUCTED: 1. Yes. 2. The Jenkins tests are all passing.
- Loading branch information