<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style id="owaParaStyle" type="text/css">P {margin-top:0;margin-bottom:0;}</style>
</head>
<body ocsi="0" fpstyle="1">
<div style="direction: ltr;font-family: Tahoma;color: #000000;font-size: 10pt;">Dear pnetcdf developpers,<br>
<br>
There is a very small "bug" in the configure.in file (in version release 1.4.1 and 1.5.0 a well as) related to bash version.<br>
I noticed this by upgrading from ubuntu 13.10 to ubuntu 14.04, and it related to the fact that bash version changed from 4.2.x to 4.3.11<br>
<br>
Have a look at the way PNETCDF_RELEASE_DATE is created:<br>
<br>
SVN_DATE="$LastChangedDate: 2014-07-08 00:50:59 -0500 (Tue, 08 Jul 2014) $"<br>
saved_IFS=${IFS}<br>
IFS="\ " read t_key PNETCDF_RELEASE_DATE2 t_time t_zone t_string <<< ${SVN_DATE}<br>
IFS="() $," read t_day PNETCDF_RELEASE_DATE <<< $t_string<br>
IFS=${saved_IFS}<br>
<br>
this is working with bash version < 4.3 but not with recent bash.<br>
With bash 4.3, you get PNETCDF_RELEASE="Mon, 23 Dec 2013) $"<br>
notice the $ at the end of string, at make install step, m4 is unhappy.<br>
<br>
I suggest to change<br>
IFS="() $," read t_day PNETCDF_RELEASE_DATE <<< $t_string<br>
into<br>
IFS="(,)$" read t_start t_day PNETCDF_RELEASE_DATE t_end <<< $t_string<br>
<br>
and it is working with the latest bash.<br>
<br>
Best regards,<br>
<br>
Pierre Kestener.<br>
<br>
<br>
<div><br>
<div style="font-family:Tahoma; font-size:13px">
<div style="font-family:Tahoma; font-size:13px">
<div style="font-family:Tahoma; font-size:13px">
<div style="font-family:Tahoma; font-size:13px">
<pre class="moz-signature" cols="72">-- <br>+--------------------------------------------------------+<br> Pierre KESTENER - Research Engineer<br> CEA Saclay -- DSM/Maison de la Simulation<br> DIGITEO building - 565, room 18<br> 91191 Gif-sur-Yvette - FRANCE<br> tel : +33 (0)1 69 08 48 26<br> http://www.maisondelasimulation.fr<br> http://pierre.kestener.org/<br>+--------------------------------------------------------+</pre>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>