Changes to make Solaris /bin/sh regression test work.

This commit is contained in:
rocky
2005-04-11 02:36:36 +00:00
parent 4428ffa788
commit c48ac300dc
4 changed files with 16 additions and 16 deletions

View File

@@ -1,17 +1,17 @@
#!/bin/sh #!/bin/sh
#$Id: check_cue.sh.in,v 1.27 2005/03/02 12:49:28 rocky Exp $ #$Id: check_cue.sh.in,v 1.28 2005/04/11 02:36:36 rocky Exp $
# Tests to see that BIN/CUE and cdrdao TOC file iamge reading is correct # Tests to see that BIN/CUE and cdrdao TOC file iamge reading is correct
# (via cd-info). # (via cd-info).
if test -n "@VCDINFO_LIBS@" ; then if test "@VCDINFO_LIBS@X" != "X" ; then
vcd_opt='--no-vcd' vcd_opt='--no-vcd'
fi fi
if test -z "$srcdir" ; then if test "X$srcdir" = "X" ; then
srcdir=`pwd` srcdir=`pwd`
fi fi
if test -z $top_srcdir ; then if test "X$top_srcdir" = "X" ; then
top_srcdir=`pwd`/.. top_srcdir=`pwd`/..
fi fi

View File

@@ -1,15 +1,15 @@
#!/bin/sh #!/bin/sh
#$Id: check_fuzzyiso.sh,v 1.4 2005/03/03 01:04:27 rocky Exp $ #$Id: check_fuzzyiso.sh,v 1.5 2005/04/11 02:36:36 rocky Exp $
if test -z $srcdir ; then if test "X$srcdir" = "X" ; then
srcdir=`pwd` srcdir=`pwd`
fi fi
if test -z $top_srcdir ; then if test "X$top_srcdir" = "X" ; then
top_srcdir=`pwd`/.. top_srcdir=`pwd`/..
fi fi
if test -z $top_builddir ; then if test "X$top_builddir" = "X" ; then
top_builddir=`pwd`/.. top_builddir=`pwd`/..
fi fi

View File

@@ -1,15 +1,15 @@
#!/bin/sh #!/bin/sh
#$Id: check_nrg.sh.in,v 1.14 2005/03/02 12:49:28 rocky Exp $ #$Id: check_nrg.sh.in,v 1.15 2005/04/11 02:36:36 rocky Exp $
if test -n "@VCDINFO_LIBS@" ; then if test "@VCDINFO_LIBS@X" != "X" ; then
vcd_opt='--no-vcd' vcd_opt='--no-vcd'
fi fi
if test -z $srcdir ; then if test "X$srcdir" = "X" ; then
srcdir=`pwd` srcdir=`pwd`
fi fi
if test -z $top_srcdir ; then if test "X$top_srcdir" = "X" ; then
top_srcdir=`pwd`/.. top_srcdir=`pwd`/..
fi fi

View File

@@ -1,16 +1,16 @@
#!/bin/sh #!/bin/sh
# $Id: check_paranoia.sh.in,v 1.9 2005/03/02 13:33:24 rocky Exp $ # $Id: check_paranoia.sh.in,v 1.10 2005/04/11 02:36:36 rocky Exp $
# Compare our cd-paranoia with an installed cdparanoia # Compare our cd-paranoia with an installed cdparanoia
if test -z $srcdir ; then if test "X$srcdir" = "X" ; then
srcdir=`pwd` srcdir=`pwd`
fi fi
if test -z $top_builddir ; then if test "X$top_builddir" = "X" ; then
top_builddir=`pwd`/.. top_builddir=`pwd`/..
fi fi
if test -z $top_srcdir ; then if test "X$top_srcdir" = "X" ; then
top_srcdir=`pwd`/.. top_srcdir=`pwd`/..
fi fi