Fix vpath build

Skip doc/src/sgml/images/Makefile since the directory is not created.
This commit is contained in:
Peter Eisentraut 2019-03-27 23:36:00 +01:00
parent ea55aec0a9
commit 12bb35fc9b
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ for item in `find "$sourcetree" -type d \( \( -name CVS -prune \) -o \( -name .g
fi
done
for item in `find "$sourcetree" -name Makefile -print -o -name GNUmakefile -print`; do
for item in `find "$sourcetree" -name Makefile -print -o -name GNUmakefile -print | grep -v "$sourcetree/doc/src/sgml/images/"`; do
filename=`expr "$item" : "$sourcetree\(.*\)"`
if test ! -f "${item}.in"; then
if cmp "$item" "$buildtree/$filename" >/dev/null 2>&1; then : ; else