summaryrefslogtreecommitdiff
path: root/config/prep_buildtree
AgeCommit message (Collapse)Author
2019-03-27Fix vpath buildPeter Eisentraut
Skip doc/src/sgml/images/Makefile since the directory is not created.
2010-10-25find -path is not portable, so use grep -v instead.Alvaro Herrera
Per previous failure of buildfarm member koi (which is no longer failing, alas).
2010-09-24Prevent doc/src/sgml subdirs from being created, instead of deletingAlvaro Herrera
them after the fact. This is a more elegant fix for bug #5595.
2010-09-22Fix remaining stray references to CVS.Tom Lane
These are just cosmetic and don't seem worth back-patching far. I put them into 9.0 just because it was trivial to do so.
2010-08-26Don't auto-create the subdirectories holding built documentation in a VPATHTom Lane
build tree. If we actually build the docs in the VPATH tree, those dirs will get created then; but if they're present and empty, they capture the vpathsearch searches in "make install", preventing installation of prebuilt docs that might exist in the source tree. Per bug #5595 from Dmtiriy Igrishin. Fix based on idea from Peter Eisentraut.
2001-09-10Make prep_buildtree harmless when run on top of the source tree.Peter Eisentraut
from Ian Lance Taylor
2001-09-10Add explicit '-print' to 'find' commands.Peter Eisentraut
(partially) from Ian Lance Taylor
2001-03-03Add configure check for -lunix, for QNX.Peter Eisentraut
Recode test for equality of source and build directory using 'test -ef', because even using pwd you might not get equal strings. Thanks, QNX.
2001-02-09Make more portable.Peter Eisentraut
2000-10-20Add support for VPATH builds, that is, building somewhere else than in thePeter Eisentraut
source directory. This involves mostly makefiles using $(srcdir) when they might have used ".". (Regression tests don't work with this, yet.) Sort out usage of CPPFLAGS, CFLAGS (and CXXFLAGS). Add "override" keyword in most places, to preserve necessary flags even when the user overrode the flags.