incorrect usage of cd test/ if ! test -> if test !
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# $Id: Makefile.am,v 1.11 2003/09/19 04:09:47 rocky Exp $
|
||||
# $Id: Makefile.am,v 1.12 2003/09/20 00:28:31 rocky Exp $
|
||||
#
|
||||
# Copyright (C) 2003 Rocky Bernstein <rocky@panix.com>
|
||||
#
|
||||
@@ -39,7 +39,8 @@ check_DATA = vcd_demo.right \
|
||||
isofs-m1.right isofs-m1.cue isofs-m1.bin \
|
||||
check_opts0.right check_opts1.right check_opts2.right \
|
||||
check_opts3.right check_opts4.right check_opts5.right \
|
||||
check_opts6.right check_opts7.right
|
||||
check_opts6.right check_opts7.right \
|
||||
isofs-m1-read.right cdda-read.right
|
||||
|
||||
EXTRA_DIST = $(check_SCRIPTS) $(check_DATA) \
|
||||
check_common_fn check_cue.sh.in check_nrg.sh.in
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#!/bin/sh
|
||||
#$Id: check_cd_read.sh,v 1.2 2003/09/19 04:34:53 rocky Exp $
|
||||
#$Id: check_cd_read.sh,v 1.3 2003/09/20 00:28:32 rocky Exp $
|
||||
#
|
||||
# Copyright (C) 2003 Rocky Bernstein <rocky@panix.com>
|
||||
#
|
||||
@@ -25,7 +25,7 @@ fi
|
||||
|
||||
. ${srcdir}/check_common_fn
|
||||
|
||||
if ! test -x ../src/cd-read ; then
|
||||
if test ! -x ../src/cd-read ; then
|
||||
exit 77
|
||||
fi
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#!/bin/sh
|
||||
#$Id: check_cue.sh.in,v 1.11 2003/09/19 04:09:47 rocky Exp $
|
||||
#$Id: check_cue.sh.in,v 1.12 2003/09/20 00:28:32 rocky Exp $
|
||||
# Tests to see that BIN/CUE file iamge reading is correct (via cd-info).
|
||||
if test -z "@VCDINFO_LIBS@" ; then
|
||||
vcd_opt='--no-vcd'
|
||||
@@ -11,7 +11,7 @@ fi
|
||||
|
||||
. ${srcdir}/check_common_fn
|
||||
|
||||
if ! test -x ../src/cd-info ; then
|
||||
if test ! -x ../src/cd-info ; then
|
||||
exit 77
|
||||
fi
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#!/bin/sh
|
||||
#$Id: check_nrg.sh.in,v 1.6 2003/09/01 02:02:59 rocky Exp $
|
||||
#$Id: check_nrg.sh.in,v 1.7 2003/09/20 00:28:32 rocky Exp $
|
||||
|
||||
if test -z "@VCDINFO_LIBS@" ; then
|
||||
vcd_opt='--no-vcd'
|
||||
@@ -11,7 +11,7 @@ fi
|
||||
|
||||
. ${srcdir}/check_common_fn
|
||||
|
||||
if ! test -x ../src/cd-info ; then
|
||||
if test ! -x ../src/cd-info ; then
|
||||
exit 77
|
||||
fi
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#!/bin/sh
|
||||
#$Id: check_opts.sh,v 1.3 2003/08/29 11:10:01 rocky Exp $
|
||||
#$Id: check_opts.sh,v 1.4 2003/09/20 00:28:32 rocky Exp $
|
||||
# Check cd-info options
|
||||
if test -z "$srcdir" ; then
|
||||
srcdir=`pwd`
|
||||
@@ -7,7 +7,7 @@ fi
|
||||
|
||||
. ${srcdir}/check_common_fn
|
||||
|
||||
if ! test -x ../src/cd-info ; then
|
||||
if test ! -x ../src/cd-info ; then
|
||||
exit 77
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user