diff options
Diffstat (limited to 'lib/et/compile_et.sh.in')
-rw-r--r-- | lib/et/compile_et.sh.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/et/compile_et.sh.in b/lib/et/compile_et.sh.in index 0e7634c7..e41b51b9 100644 --- a/lib/et/compile_et.sh.in +++ b/lib/et/compile_et.sh.in @@ -15,10 +15,10 @@ if test "x$1" = x ; then exit 1 fi -if test ! -f "$DIR/et_h.awk" -o ! -f "$DIR/et_c.awk" ; then +if test ! -f "$DIR/et_h.awk" || test ! -f "$DIR/et_c.awk" ; then DIR="$ET_DIR" # echo "Falling back to $DIR..." - if test ! -f "$DIR/et_h.awk" -o ! -f "$DIR/et_c.awk" ; then + if test ! -f "$DIR/et_h.awk" || test ! -f "$DIR/et_c.awk" ; then echo "compile_et: Couldn't find compile_et's template files." exit 1 fi |