mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
20 lines
473 B
Bash
Executable File
20 lines
473 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# if this is part of a distcheck action, then this script
|
|
# will be executed in a different directory
|
|
# than the one containing it; so capture the path to this script
|
|
# as the location of the source directory.
|
|
srcdir=`dirname $0`
|
|
|
|
# compute the build directory
|
|
# Do a hack to remove e.g. c: for CYGWIN
|
|
cd `pwd`
|
|
builddir=`pwd`/..
|
|
# Hack for CYGWIN
|
|
cd $srcdir
|
|
srcdir=`pwd`
|
|
cd ${builddir}/ncdap_test
|
|
|
|
sh ${srcdir}/tst_remote.sh "$srcdir" "$builddir" "3" "" ""
|
|
exit
|