mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
31d15ec532
If the netCDF-C library is built with the HDF5 library but without the HDF4 library and one attempts to open an HDF4 file, an abort occurs rather than returning a proper error code (NC_ENOTNC). Fix is to modify dfile.c#NC_check_file_type to properly #ifdef relevant tests.
11 lines
198 B
Plaintext
11 lines
198 B
Plaintext
NC="avhrr.hdf"
|
|
|
|
NCDUMP="./ncdump"
|
|
#NCDUMP="./.libs/ncdump"
|
|
|
|
alias q0="${NCDUMP} ${NC}"
|
|
alias qh="${NCDUMP} -h ${NC}"
|
|
alias qq="gdb --args ${NCDUMP} ${NC}"
|
|
alias qqh="gdb --args ${NCDUMP} -h ${NC}"
|
|
|