diff options
author | Noah Misch <noah@leadboat.com> | 2014-11-02 21:43:25 -0500 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2014-11-02 21:43:25 -0500 |
commit | 67a412049489f554c3a552bd523cefd30d038221 (patch) | |
tree | d26646c29f929d0c75cfad7ca3245f14a4e72ba1 | |
parent | 846319521753af63c8f9b0893a116adc0a70e936 (diff) | |
download | postgresql-67a412049489f554c3a552bd523cefd30d038221.tar.gz postgresql-67a412049489f554c3a552bd523cefd30d038221.zip |
Make ECPG test programs depend on "ecpg$(X)", not "ecpg".
Cygwin builds require this of dependencies pertaining to pattern rules.
On Cygwin, stat("foo") in the absence of a file with that exact name can
locate foo.exe. While GNU make uses stat() for dependencies of ordinary
rules, it uses readdir() to assess dependencies of pattern rules.
Therefore, a pattern rule dependency should match any underlying file
name exactly. Back-patch to 9.4, where the dependency was introduced.
-rw-r--r-- | src/interfaces/ecpg/test/Makefile.regress | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/test/Makefile.regress b/src/interfaces/ecpg/test/Makefile.regress index fd6e83aeafa..b3d7c1e874a 100644 --- a/src/interfaces/ecpg/test/Makefile.regress +++ b/src/interfaces/ecpg/test/Makefile.regress @@ -12,7 +12,7 @@ override LIBS := -lecpg -lpgtypes $(filter -l%, $(libpq)) $(LIBS) $(PTHREAD_LIBS ECPG = ../../preproc/ecpg --regression -I$(srcdir)/../../include -I$(srcdir) # Files that most or all ecpg preprocessor test outputs depend on -ECPG_TEST_DEPENDENCIES = ../../preproc/ecpg \ +ECPG_TEST_DEPENDENCIES = ../../preproc/ecpg$(X) \ $(srcdir)/../regression.h \ $(srcdir)/../../include/sqlca.h \ $(srcdir)/../../include/sqlda.h \ |