mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
79cde861ac
implementation. Deleted obsolete win32, soon to be replaced by Ward's Windows 32- and 64-bit fixes for building with MSYS/MinGW. Made cosmetic cleanup to output of "make check" to make it easier for users to interpret. Fixed bug NCF-175: ncdump -t incorrectly interpreting units attribute (such as "days") without a base time (such as "since 2007-01-01") as a time unit. Changed name to 4.2.1-beta.
29 lines
407 B
Bash
Executable File
29 lines
407 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
echo ""
|
|
verbose=0
|
|
|
|
if test "x$builddir" = "x"; then builddir=`pwd`; fi
|
|
if test "x$srcdir" = "x"; then srcdir=`dirname $0`; fi
|
|
|
|
# Make buildir absolute
|
|
cd $builddir
|
|
builddir=`pwd`
|
|
|
|
# Make srcdir be absolute
|
|
cd $srcdir
|
|
srcdir=`pwd`
|
|
cd $builddir
|
|
|
|
export verbose
|
|
export srcdir
|
|
export builddir
|
|
|
|
KFLAG=1 ; export KFLAG
|
|
sh ${srcdir}/tst_ncgen4_diff.sh
|
|
sh ${srcdir}/tst_ncgen4_cycle.sh
|
|
exit 0
|
|
|
|
|