get files from ../include/linux if not here

This commit is contained in:
Paul Mackerras 1999-03-31 05:38:29 +00:00
parent ec78dccdeb
commit 91d19fa519

View File

@ -115,6 +115,14 @@ newer () {
installfile () {
BASE=`basename $1`
if [ ! -e $BASE ]; then
if [ -e ../include/linux/$BASE ]; then
BASE=../include/linux/$BASE
else
echo Could not find source file $BASE !
false ; return
fi
fi
if newer $1 $BASE; then
echo $1 is not older than $BASE, skipping
return 0