mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-09 08:11:38 +08:00
413e49d758
that were not taking the CDF-5 format into account. 2. Had to update ncgen.1 man page to define the new k-flag rules to deal with cdf-5. 3. Had to fix some tests that use 'cmp' for comparison; this really should be deprecated. 3. There was a bug in configure.ac with respect to using the enable-netcdf-4 flag vs using disable-netcdf-4.
9 lines
178 B
Bash
Executable File
9 lines
178 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
if test "x$srcdir" = x ; then
|
|
srcdir=`pwd`
|
|
fi
|
|
cmp nctest_classic.nc $srcdir/ref_nctest_classic.nc
|
|
cmp nctest_64bit_offset.nc $srcdir/ref_nctest_64bit_offset.nc
|
|
|