WRF 4.5 configure error

zexhan

New member
hello, i am trying to install latest version of wrf 4.5 which i downloaded from Github website. when i try to configure it. i install all libraries and give them All path everything is alright but it shows this error when i try to configure. can anybody help me with this? it show this error

./configure: 1046: [: rpc: unexpected operator
 

Attachments

  • Screenshot from 2023-05-24 19-53-54.png
    Screenshot from 2023-05-24 19-53-54.png
    285.5 KB · Views: 33
I have the same issue. I've changed de operator "==" for "=" in line 1046:

if [ $rpc_type == "rpc" ]; then ## default
if [ $rpc_type = "rpc" ]; then ## adjusted

So, it works without any error or waning.
 
I have the same issue. I've changed de operator "==" for "=" in line 1046:

if [ $rpc_type == "rpc" ]; then ## default
if [ $rpc_type = "rpc" ]; then ## adjusted

So, it works without any error or waning.
ok thanks, i did same and it configure now without that error.
 
Back
Top