Commit 12bb35fc authored by Peter Eisentraut's avatar Peter Eisentraut

Fix vpath build

Skip doc/src/sgml/images/Makefile since the directory is not created.
parent ea55aec0
...@@ -33,7 +33,7 @@ for item in `find "$sourcetree" -type d \( \( -name CVS -prune \) -o \( -name .g ...@@ -33,7 +33,7 @@ for item in `find "$sourcetree" -type d \( \( -name CVS -prune \) -o \( -name .g
fi fi
done 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\(.*\)"` filename=`expr "$item" : "$sourcetree\(.*\)"`
if test ! -f "${item}.in"; then if test ! -f "${item}.in"; then
if cmp "$item" "$buildtree/$filename" >/dev/null 2>&1; then : ; else if cmp "$item" "$buildtree/$filename" >/dev/null 2>&1; then : ; else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment