summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2018-02-26 12:32:14 +1100
committerDarren Tucker <dtucker@dtucker.net>2018-02-26 12:32:14 +1100
commit89212533dde6798324e835b1499084658df4579e (patch)
tree18f3cdeedb9ee3c19d4b117352154eacce7f65ea /Makefile.in
parentf885474137df4b89498c0b8834c2ac72c47aa4bd (diff)
Fix breakage when REGRESSTMP not set.
BUILDDIR is not set where used for REGRESSTMP, use make's CURDIR instead. Pointed out by djm@.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index bfe29344..b2fce4ae 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -577,7 +577,7 @@ regress-binaries: regress/modpipe$(EXEEXT) \
regress/unittests/utf8/test_utf8$(EXEEXT) \
regress/misc/kexfuzz/kexfuzz$(EXEEXT)
-REGRESSTMP = "$(BUILDDIR)/regress"
+REGRESSTMP = "$(CURDIR)/regress"
tests interop-tests t-exec unit: regress-prep regress-binaries $(TARGETS)
BUILDDIR=`pwd`; \