Fix breakage when REGRESSTMP not set.
BUILDDIR is not set where used for REGRESSTMP, use make's CURDIR instead. Pointed out by djm@.
This commit is contained in:
parent
f885474137
commit
89212533dd
|
@ -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`; \
|
||||
|
|
Loading…
Reference in New Issue