Mercurial > hg > octave-nkf
view build-aux/find-files-with-tests.sh @ 20126:f48e650a68b5
Use GLint instead of just int in calls to glGetIntegerv to match prototype.
* __osmesa_print__.cc: Declare variables used in glGetIntegerv to be of type
GLint.
author | Rik <rik@octave.org> |
---|---|
date | Sun, 08 Mar 2015 05:53:11 -0700 |
parents | 43e6415393ff |
children |
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 [ "`$GREP -l '^%!' $file`" ]; then echo "$file" | $SED "s,\\$srcdir/,,"; fi done