view build-aux/find-files-with-tests.sh @ 21276:3b4bb843ffcd

maint: Ensure source files exist when searching for patterns during build * find-files-with-tests.sh: Test for file existence to avoid spurious warnings on not-yet-generated sources. * find-defun-files.sh: Likewise.
author Mike Miller <mtmiller@octave.org>
date Tue, 16 Feb 2016 17:57:07 -0800
parents 43e6415393ff
children 1bca6c72d2b1
line wrap: on
line source

#! /bin/sh

set -e
GREP=${GREP:-grep}
SED=${SED:-sed}

srcdir="$1"
shift

for arg
do
  if [ -f "$arg" ]; then
    file="$arg"
  else
    file="$srcdir/$arg"
  fi
  if [ -f "$file" ]; then
    if [ "`$GREP -l '^%!' $file`" ]; then
      echo "$file" | $SED "s,\\$srcdir/,,"
    fi
  fi
done