From: Peter Eisentraut Date: Wed, 27 Mar 2019 22:36:00 +0000 (+0100) Subject: Fix vpath build X-Git-Tag: REL_12_BETA1~391 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=12bb35fc9b000d462b9bd6b8856e1884ef1bb3d7;p=postgresql Fix vpath build Skip doc/src/sgml/images/Makefile since the directory is not created. --- diff --git a/config/prep_buildtree b/config/prep_buildtree index 5b72c392f6..a0eabd3dee 100644 --- a/config/prep_buildtree +++ b/config/prep_buildtree @@ -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